CRO Price: $0.20 (+8.40%)

Token

CRC-20: CRO CROW AIRDROPS (CROWDROP)

Overview

Max Total Supply

0 CROWDROP

Holders

1,526

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
CROCROWAIRDROPS

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 17: CROCROWAIRDROPS.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/presets/ERC1155PresetMinterPauser.sol)

pragma solidity ^0.8.0;

import "./ERC1155.sol";
import "./ERC1155Burnable.sol";
import "./Context.sol";
import "./Ownable.sol";
import "./IERC20.sol";

contract CROCROWAIRDROPS is Context, Ownable, ERC1155Burnable{

    string private _name;
    string private _symbol;

    bool public tokenURIFrozen = false;

    constructor(string memory name_, string memory symbol_, string memory uri) ERC1155(uri) {
        _name = name_;
        _symbol = symbol_;
    }

    function airdrop(
        address[] memory accounts,
        uint256 id,
        bytes memory data
    ) public onlyOwner {
        uint256 count = accounts.length;
        for (uint256 i = 0; i < count; i++){
            _mint(accounts[i], id, 1, data);
        }
    }

    function withdraw(address token, uint256 amount) public onlyOwner {
        if (token == address(0)) {
            payable(_msgSender()).transfer(amount);
        } else {
            IERC20(token).transfer(_msgSender(), amount);
        }
    }

    function setBaseTokenURI(string memory uri) public onlyOwner {
        require(tokenURIFrozen == false, "Token URIs are frozen");
        _setURI(uri);
    }


    function freezeBaseURI() public onlyOwner {
        tokenURIFrozen = true;
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

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

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }
}

File 1 of 17: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 17: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 17: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 17: ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./IERC1155MetadataURI.sol";
import "./Address.sol";
import "./Context.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI{
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function uri(uint256 id) public view virtual override returns (string memory) {
        return string(abi.encodePacked(_uri,Strings.toString(id)));
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 6 of 17: ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "./ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 7 of 17: ERC1155Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/extensions/ERC1155Pausable.sol)

pragma solidity ^0.8.0;

import "./ERC1155.sol";
import "./Pausable.sol";

/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

File 8 of 17: ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "./ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_mint}.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        super._mint(account, id, amount, data);
        _totalSupply[id] += amount;
    }

    /**
     * @dev See {ERC1155-_mintBatch}.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._mintBatch(to, ids, amounts, data);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] += amounts[i];
        }
    }

    /**
     * @dev See {ERC1155-_burn}.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override {
        super._burn(account, id, amount);
        _totalSupply[id] -= amount;
    }

    /**
     * @dev See {ERC1155-_burnBatch}.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override {
        super._burnBatch(account, ids, amounts);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] -= amounts[i];
        }
    }
}

File 9 of 17: ERC165.sol
// SPDX-License-Identifier: MIT

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 10 of 17: IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 11 of 17: IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 12 of 17: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

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

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 14 of 17: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 15 of 17: Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 16 of 17: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 17 of 17: Strings.sol
// SPDX-License-Identifier: MIT

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":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"uri","type":"string"}],"name":"setBaseTokenURI","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":[],"name":"tokenURIFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162004685380380620046858339818101604052810190620000529190620002ca565b806200007362000067620000c060201b60201c565b620000c860201b60201c565b62000084816200018c60201b60201c565b5082600490805190602001906200009d929190620001a8565b508160059080519060200190620000b6929190620001a8565b50505050620004db565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060039080519060200190620001a4929190620001a8565b5050565b828054620001b69062000400565b90600052602060002090601f016020900481019282620001da576000855562000226565b82601f10620001f557805160ff191683800117855562000226565b8280016001018555821562000226579182015b828111156200022557825182559160200191906001019062000208565b5b50905062000235919062000239565b5090565b5b80821115620002545760008160009055506001016200023a565b5090565b60006200026f620002698462000394565b6200036b565b9050828152602081018484840111156200028857600080fd5b62000295848285620003ca565b509392505050565b600082601f830112620002af57600080fd5b8151620002c184826020860162000258565b91505092915050565b600080600060608486031215620002e057600080fd5b600084015167ffffffffffffffff811115620002fb57600080fd5b62000309868287016200029d565b935050602084015167ffffffffffffffff8111156200032757600080fd5b62000335868287016200029d565b925050604084015167ffffffffffffffff8111156200035357600080fd5b62000361868287016200029d565b9150509250925092565b6000620003776200038a565b905062000385828262000436565b919050565b6000604051905090565b600067ffffffffffffffff821115620003b257620003b16200049b565b5b620003bd82620004ca565b9050602081019050919050565b60005b83811015620003ea578082015181840152602081019050620003cd565b83811115620003fa576000848401525b50505050565b600060028204905060018216806200041957607f821691505b6020821081141562000430576200042f6200046c565b5b50919050565b6200044182620004ca565b810181811067ffffffffffffffff821117156200046357620004626200049b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61419a80620004eb6000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c806395d89b41116100ad578063e985e9c511610071578063e985e9c514610308578063f242432a14610338578063f2fde38b14610354578063f3fef3a314610370578063f5298aca1461038c5761012b565b806395d89b411461028a578063a22cb465146102a8578063c29de630146102c4578063e417bc2a146102e2578063e7bc8208146102fe5761012b565b806330176e13116100f457806330176e13146101fa5780634e1273f4146102165780636b20c45414610246578063715018a6146102625780638da5cb5b1461026c5761012b565b8062fdd58e1461013057806301ffc9a71461016057806306fdde03146101905780630e89341c146101ae5780632eb2c2d6146101de575b600080fd5b61014a60048036038101906101459190612cb1565b6103a8565b60405161015791906136d0565b60405180910390f35b61017a60048036038101906101759190612e50565b610472565b6040516101879190613493565b60405180910390f35b610198610484565b6040516101a591906134ae565b60405180910390f35b6101c860048036038101906101c39190612ee3565b610516565b6040516101d591906134ae565b60405180910390f35b6101f860048036038101906101f39190612aa8565b61054a565b005b610214600480360381019061020f9190612ea2565b6105eb565b005b610230600480360381019061022b9190612d3c565b6106c9565b60405161023d919061343a565b60405180910390f35b610260600480360381019061025b9190612bf6565b61087a565b005b61026a610917565b005b61027461099f565b6040516102819190613334565b60405180910390f35b6102926109c8565b60405161029f91906134ae565b60405180910390f35b6102c260048036038101906102bd9190612c75565b610a5a565b005b6102cc610a70565b6040516102d99190613493565b60405180910390f35b6102fc60048036038101906102f79190612da8565b610a83565b005b610306610b77565b005b610322600480360381019061031d9190612a6c565b610c10565b60405161032f9190613493565b60405180910390f35b610352600480360381019061034d9190612b67565b610ca4565b005b61036e60048036038101906103699190612a43565b610d45565b005b61038a60048036038101906103859190612cb1565b610e3d565b005b6103a660048036038101906103a19190612ced565b610fdb565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041090613510565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061047d82611078565b9050919050565b606060048054610493906139f5565b80601f01602080910402602001604051908101604052809291908181526020018280546104bf906139f5565b801561050c5780601f106104e15761010080835404028352916020019161050c565b820191906000526020600020905b8154815290600101906020018083116104ef57829003601f168201915b5050505050905090565b606060036105238361115a565b604051602001610534929190613310565b6040516020818303038152906040529050919050565b610552611307565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610598575061059785610592611307565b610c10565b5b6105d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ce906135b0565b60405180910390fd5b6105e4858585858561130f565b5050505050565b6105f3611307565b73ffffffffffffffffffffffffffffffffffffffff1661061161099f565b73ffffffffffffffffffffffffffffffffffffffff1614610667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065e90613610565b60405180910390fd5b60001515600660009054906101000a900460ff161515146106bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b490613630565b60405180910390fd5b6106c681611672565b50565b6060815183511461070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070690613670565b60405180910390fd5b6000835167ffffffffffffffff811115610752577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107805781602001602082028036833780820191505090505b50905060005b845181101561086f576108198582815181106107cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185838151811061080c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516103a8565b828281518110610852577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061086890613a58565b9050610786565b508091505092915050565b610882611307565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806108c857506108c7836108c2611307565b610c10565b5b610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe90613570565b60405180910390fd5b61091283838361168c565b505050565b61091f611307565b73ffffffffffffffffffffffffffffffffffffffff1661093d61099f565b73ffffffffffffffffffffffffffffffffffffffff1614610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90613610565b60405180910390fd5b61099d600061198b565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109d7906139f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a03906139f5565b8015610a505780601f10610a2557610100808354040283529160200191610a50565b820191906000526020600020905b815481529060010190602001808311610a3357829003601f168201915b5050505050905090565b610a6c610a65611307565b8383611a4f565b5050565b600660009054906101000a900460ff1681565b610a8b611307565b73ffffffffffffffffffffffffffffffffffffffff16610aa961099f565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613610565b60405180910390fd5b60008351905060005b81811015610b7057610b5d858281518110610b4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185600186611bbc565b8080610b6890613a58565b915050610b08565b5050505050565b610b7f611307565b73ffffffffffffffffffffffffffffffffffffffff16610b9d61099f565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90613610565b60405180910390fd5b6001600660006101000a81548160ff021916908315150217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610cac611307565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610cf25750610cf185610cec611307565b610c10565b5b610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890613570565b60405180910390fd5b610d3e8585858585611d53565b5050505050565b610d4d611307565b73ffffffffffffffffffffffffffffffffffffffff16610d6b61099f565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890613610565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890613530565b60405180910390fd5b610e3a8161198b565b50565b610e45611307565b73ffffffffffffffffffffffffffffffffffffffff16610e6361099f565b73ffffffffffffffffffffffffffffffffffffffff1614610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090613610565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4157610ef6611307565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f3b573d6000803e3d6000fd5b50610fd7565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610f65611307565b836040518363ffffffff1660e01b8152600401610f83929190613411565b602060405180830381600087803b158015610f9d57600080fd5b505af1158015610fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd59190612e27565b505b5050565b610fe3611307565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611029575061102883611023611307565b610c10565b5b611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613570565b60405180910390fd5b611073838383611fd8565b505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061114357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111535750611152826121f7565b5b9050919050565b606060008214156111a2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611302565b600082905060005b600082146111d45780806111bd90613a58565b915050600a826111cd91906138da565b91506111aa565b60008167ffffffffffffffff811115611216577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112485781602001600182028036833780820191505090505b5090505b600085146112fb57600182611261919061390b565b9150600a856112709190613aa1565b603061127c9190613884565b60f81b8183815181106112b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856112f491906138da565b945061124c565b8093505050505b919050565b600033905090565b8151835114611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613690565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613590565b60405180910390fd5b60006113cd611307565b90506113dd818787878787612261565b60005b84518110156115dd576000858281518110611424577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611469577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561150b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611502906135f0565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115c29190613884565b92505081905550505050806115d690613a58565b90506113e0565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161165492919061345c565b60405180910390a461166a818787878787612277565b505050505050565b8060039080519060200190611688929190612726565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f3906135d0565b60405180910390fd5b8051825114611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790613690565b60405180910390fd5b600061174a611307565b905061176a81856000868660405180602001604052806000815250612261565b60005b83518110156119055760008482815181106117b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106117f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006001600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90613550565b60405180910390fd5b8181036001600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806118fd90613a58565b91505061176d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161197d92919061345c565b60405180910390a450505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590613650565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611baf9190613493565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c23906136b0565b60405180910390fd5b6000611c36611307565b9050611c5781600087611c488861245e565b611c518861245e565b87612261565b826001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb79190613884565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d359291906136eb565b60405180910390a4611d4c81600087878787612524565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba90613590565b60405180910390fd5b6000611dcd611307565b9050611ded818787611dde8861245e565b611de78861245e565b87612261565b60006001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c906135f0565b60405180910390fd5b8381036001600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f3c9190613884565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611fb99291906136eb565b60405180910390a4611fcf828888888888612524565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f906135d0565b60405180910390fd5b6000612052611307565b9050612082818560006120648761245e565b61206d8761245e565b60405180602001604052806000815250612261565b60006001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190613550565b60405180910390fd5b8281036001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516121e89291906136eb565b60405180910390a45050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61226f86868686868661270b565b505050505050565b6122968473ffffffffffffffffffffffffffffffffffffffff16612713565b15612456578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016122dc95949392919061334f565b602060405180830381600087803b1580156122f657600080fd5b505af192505050801561232757506040513d601f19601f820116820180604052508101906123249190612e79565b60015b6123cd57612333613b8e565b806308c379a014156123905750612348614072565b806123535750612392565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238791906134ae565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906134d0565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b906134f0565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156124a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156124d15781602001602082028036833780820191505090505b509050828160008151811061250f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6125438473ffffffffffffffffffffffffffffffffffffffff16612713565b15612703578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016125899594939291906133b7565b602060405180830381600087803b1580156125a357600080fd5b505af19250505080156125d457506040513d601f19601f820116820180604052508101906125d19190612e79565b60015b61267a576125e0613b8e565b806308c379a0141561263d57506125f5614072565b80612600575061263f565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263491906134ae565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612671906134d0565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f8906134f0565b60405180910390fd5b505b505050505050565b505050505050565b600080823b905060008111915050919050565b828054612732906139f5565b90600052602060002090601f016020900481019282612754576000855561279b565b82601f1061276d57805160ff191683800117855561279b565b8280016001018555821561279b579182015b8281111561279a57825182559160200191906001019061277f565b5b5090506127a891906127ac565b5090565b5b808211156127c55760008160009055506001016127ad565b5090565b60006127dc6127d784613739565b613714565b905080838252602082019050828560208602820111156127fb57600080fd5b60005b8581101561282b5781612811888261291d565b8452602084019350602083019250506001810190506127fe565b5050509392505050565b600061284861284384613765565b613714565b9050808382526020820190508285602086028201111561286757600080fd5b60005b85811015612897578161287d8882612a2e565b84526020840193506020830192505060018101905061286a565b5050509392505050565b60006128b46128af84613791565b613714565b9050828152602081018484840111156128cc57600080fd5b6128d78482856139b3565b509392505050565b60006128f26128ed846137c2565b613714565b90508281526020810184848401111561290a57600080fd5b6129158482856139b3565b509392505050565b60008135905061292c81614108565b92915050565b600082601f83011261294357600080fd5b81356129538482602086016127c9565b91505092915050565b600082601f83011261296d57600080fd5b813561297d848260208601612835565b91505092915050565b6000813590506129958161411f565b92915050565b6000815190506129aa8161411f565b92915050565b6000813590506129bf81614136565b92915050565b6000815190506129d481614136565b92915050565b600082601f8301126129eb57600080fd5b81356129fb8482602086016128a1565b91505092915050565b600082601f830112612a1557600080fd5b8135612a258482602086016128df565b91505092915050565b600081359050612a3d8161414d565b92915050565b600060208284031215612a5557600080fd5b6000612a638482850161291d565b91505092915050565b60008060408385031215612a7f57600080fd5b6000612a8d8582860161291d565b9250506020612a9e8582860161291d565b9150509250929050565b600080600080600060a08688031215612ac057600080fd5b6000612ace8882890161291d565b9550506020612adf8882890161291d565b945050604086013567ffffffffffffffff811115612afc57600080fd5b612b088882890161295c565b935050606086013567ffffffffffffffff811115612b2557600080fd5b612b318882890161295c565b925050608086013567ffffffffffffffff811115612b4e57600080fd5b612b5a888289016129da565b9150509295509295909350565b600080600080600060a08688031215612b7f57600080fd5b6000612b8d8882890161291d565b9550506020612b9e8882890161291d565b9450506040612baf88828901612a2e565b9350506060612bc088828901612a2e565b925050608086013567ffffffffffffffff811115612bdd57600080fd5b612be9888289016129da565b9150509295509295909350565b600080600060608486031215612c0b57600080fd5b6000612c198682870161291d565b935050602084013567ffffffffffffffff811115612c3657600080fd5b612c428682870161295c565b925050604084013567ffffffffffffffff811115612c5f57600080fd5b612c6b8682870161295c565b9150509250925092565b60008060408385031215612c8857600080fd5b6000612c968582860161291d565b9250506020612ca785828601612986565b9150509250929050565b60008060408385031215612cc457600080fd5b6000612cd28582860161291d565b9250506020612ce385828601612a2e565b9150509250929050565b600080600060608486031215612d0257600080fd5b6000612d108682870161291d565b9350506020612d2186828701612a2e565b9250506040612d3286828701612a2e565b9150509250925092565b60008060408385031215612d4f57600080fd5b600083013567ffffffffffffffff811115612d6957600080fd5b612d7585828601612932565b925050602083013567ffffffffffffffff811115612d9257600080fd5b612d9e8582860161295c565b9150509250929050565b600080600060608486031215612dbd57600080fd5b600084013567ffffffffffffffff811115612dd757600080fd5b612de386828701612932565b9350506020612df486828701612a2e565b925050604084013567ffffffffffffffff811115612e1157600080fd5b612e1d868287016129da565b9150509250925092565b600060208284031215612e3957600080fd5b6000612e478482850161299b565b91505092915050565b600060208284031215612e6257600080fd5b6000612e70848285016129b0565b91505092915050565b600060208284031215612e8b57600080fd5b6000612e99848285016129c5565b91505092915050565b600060208284031215612eb457600080fd5b600082013567ffffffffffffffff811115612ece57600080fd5b612eda84828501612a04565b91505092915050565b600060208284031215612ef557600080fd5b6000612f0384828501612a2e565b91505092915050565b6000612f1883836132f2565b60208301905092915050565b612f2d8161393f565b82525050565b6000612f3e82613818565b612f488185613846565b9350612f53836137f3565b8060005b83811015612f84578151612f6b8882612f0c565b9750612f7683613839565b925050600181019050612f57565b5085935050505092915050565b612f9a81613951565b82525050565b6000612fab82613823565b612fb58185613857565b9350612fc58185602086016139c2565b612fce81613bb0565b840191505092915050565b6000612fe48261382e565b612fee8185613868565b9350612ffe8185602086016139c2565b61300781613bb0565b840191505092915050565b600061301d8261382e565b6130278185613879565b93506130378185602086016139c2565b80840191505092915050565b60008154613050816139f5565b61305a8186613879565b945060018216600081146130755760018114613086576130b9565b60ff198316865281860193506130b9565b61308f85613803565b60005b838110156130b157815481890152600182019150602081019050613092565b838801955050505b50505092915050565b60006130cf603483613868565b91506130da82613bce565b604082019050919050565b60006130f2602883613868565b91506130fd82613c1d565b604082019050919050565b6000613115602b83613868565b915061312082613c6c565b604082019050919050565b6000613138602683613868565b915061314382613cbb565b604082019050919050565b600061315b602483613868565b915061316682613d0a565b604082019050919050565b600061317e602983613868565b915061318982613d59565b604082019050919050565b60006131a1602583613868565b91506131ac82613da8565b604082019050919050565b60006131c4603283613868565b91506131cf82613df7565b604082019050919050565b60006131e7602383613868565b91506131f282613e46565b604082019050919050565b600061320a602a83613868565b915061321582613e95565b604082019050919050565b600061322d602083613868565b915061323882613ee4565b602082019050919050565b6000613250601583613868565b915061325b82613f0d565b602082019050919050565b6000613273602983613868565b915061327e82613f36565b604082019050919050565b6000613296602983613868565b91506132a182613f85565b604082019050919050565b60006132b9602883613868565b91506132c482613fd4565b604082019050919050565b60006132dc602183613868565b91506132e782614023565b604082019050919050565b6132fb816139a9565b82525050565b61330a816139a9565b82525050565b600061331c8285613043565b91506133288284613012565b91508190509392505050565b60006020820190506133496000830184612f24565b92915050565b600060a0820190506133646000830188612f24565b6133716020830187612f24565b81810360408301526133838186612f33565b905081810360608301526133978185612f33565b905081810360808301526133ab8184612fa0565b90509695505050505050565b600060a0820190506133cc6000830188612f24565b6133d96020830187612f24565b6133e66040830186613301565b6133f36060830185613301565b81810360808301526134058184612fa0565b90509695505050505050565b60006040820190506134266000830185612f24565b6134336020830184613301565b9392505050565b600060208201905081810360008301526134548184612f33565b905092915050565b600060408201905081810360008301526134768185612f33565b9050818103602083015261348a8184612f33565b90509392505050565b60006020820190506134a86000830184612f91565b92915050565b600060208201905081810360008301526134c88184612fd9565b905092915050565b600060208201905081810360008301526134e9816130c2565b9050919050565b60006020820190508181036000830152613509816130e5565b9050919050565b6000602082019050818103600083015261352981613108565b9050919050565b600060208201905081810360008301526135498161312b565b9050919050565b600060208201905081810360008301526135698161314e565b9050919050565b6000602082019050818103600083015261358981613171565b9050919050565b600060208201905081810360008301526135a981613194565b9050919050565b600060208201905081810360008301526135c9816131b7565b9050919050565b600060208201905081810360008301526135e9816131da565b9050919050565b60006020820190508181036000830152613609816131fd565b9050919050565b6000602082019050818103600083015261362981613220565b9050919050565b6000602082019050818103600083015261364981613243565b9050919050565b6000602082019050818103600083015261366981613266565b9050919050565b6000602082019050818103600083015261368981613289565b9050919050565b600060208201905081810360008301526136a9816132ac565b9050919050565b600060208201905081810360008301526136c9816132cf565b9050919050565b60006020820190506136e56000830184613301565b92915050565b60006040820190506137006000830185613301565b61370d6020830184613301565b9392505050565b600061371e61372f565b905061372a8282613a27565b919050565b6000604051905090565b600067ffffffffffffffff82111561375457613753613b5f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137805761377f613b5f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137ac576137ab613b5f565b5b6137b582613bb0565b9050602081019050919050565b600067ffffffffffffffff8211156137dd576137dc613b5f565b5b6137e682613bb0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061388f826139a9565b915061389a836139a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138cf576138ce613ad2565b5b828201905092915050565b60006138e5826139a9565b91506138f0836139a9565b925082613900576138ff613b01565b5b828204905092915050565b6000613916826139a9565b9150613921836139a9565b92508282101561393457613933613ad2565b5b828203905092915050565b600061394a82613989565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139e05780820151818401526020810190506139c5565b838111156139ef576000848401525b50505050565b60006002820490506001821680613a0d57607f821691505b60208210811415613a2157613a20613b30565b5b50919050565b613a3082613bb0565b810181811067ffffffffffffffff82111715613a4f57613a4e613b5f565b5b80604052505050565b6000613a63826139a9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9657613a95613ad2565b5b600182019050919050565b6000613aac826139a9565b9150613ab7836139a9565b925082613ac757613ac6613b01565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613bad5760046000803e613baa600051613bc1565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e2055524973206172652066726f7a656e0000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561408257614105565b61408a61372f565b60043d036004823e80513d602482011167ffffffffffffffff821117156140b2575050614105565b808201805167ffffffffffffffff8111156140d05750505050614105565b80602083010160043d0385018111156140ed575050505050614105565b6140fc82602001850186613a27565b82955050505050505b90565b6141118161393f565b811461411c57600080fd5b50565b61412881613951565b811461413357600080fd5b50565b61413f8161395d565b811461414a57600080fd5b50565b614156816139a9565b811461416157600080fd5b5056fea2646970667358221220e61af49596b9a755c6203ee1bda0902eb0bdf99ac87cd4f1ed706581ec8b33f764736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001143524f2043524f572041495244524f5053000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000843524f5744524f500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d664664736346694d7943563853466f4a77546846656b705a50644554584c625453426952707167446b47464c2f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012b5760003560e01c806395d89b41116100ad578063e985e9c511610071578063e985e9c514610308578063f242432a14610338578063f2fde38b14610354578063f3fef3a314610370578063f5298aca1461038c5761012b565b806395d89b411461028a578063a22cb465146102a8578063c29de630146102c4578063e417bc2a146102e2578063e7bc8208146102fe5761012b565b806330176e13116100f457806330176e13146101fa5780634e1273f4146102165780636b20c45414610246578063715018a6146102625780638da5cb5b1461026c5761012b565b8062fdd58e1461013057806301ffc9a71461016057806306fdde03146101905780630e89341c146101ae5780632eb2c2d6146101de575b600080fd5b61014a60048036038101906101459190612cb1565b6103a8565b60405161015791906136d0565b60405180910390f35b61017a60048036038101906101759190612e50565b610472565b6040516101879190613493565b60405180910390f35b610198610484565b6040516101a591906134ae565b60405180910390f35b6101c860048036038101906101c39190612ee3565b610516565b6040516101d591906134ae565b60405180910390f35b6101f860048036038101906101f39190612aa8565b61054a565b005b610214600480360381019061020f9190612ea2565b6105eb565b005b610230600480360381019061022b9190612d3c565b6106c9565b60405161023d919061343a565b60405180910390f35b610260600480360381019061025b9190612bf6565b61087a565b005b61026a610917565b005b61027461099f565b6040516102819190613334565b60405180910390f35b6102926109c8565b60405161029f91906134ae565b60405180910390f35b6102c260048036038101906102bd9190612c75565b610a5a565b005b6102cc610a70565b6040516102d99190613493565b60405180910390f35b6102fc60048036038101906102f79190612da8565b610a83565b005b610306610b77565b005b610322600480360381019061031d9190612a6c565b610c10565b60405161032f9190613493565b60405180910390f35b610352600480360381019061034d9190612b67565b610ca4565b005b61036e60048036038101906103699190612a43565b610d45565b005b61038a60048036038101906103859190612cb1565b610e3d565b005b6103a660048036038101906103a19190612ced565b610fdb565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041090613510565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061047d82611078565b9050919050565b606060048054610493906139f5565b80601f01602080910402602001604051908101604052809291908181526020018280546104bf906139f5565b801561050c5780601f106104e15761010080835404028352916020019161050c565b820191906000526020600020905b8154815290600101906020018083116104ef57829003601f168201915b5050505050905090565b606060036105238361115a565b604051602001610534929190613310565b6040516020818303038152906040529050919050565b610552611307565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610598575061059785610592611307565b610c10565b5b6105d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ce906135b0565b60405180910390fd5b6105e4858585858561130f565b5050505050565b6105f3611307565b73ffffffffffffffffffffffffffffffffffffffff1661061161099f565b73ffffffffffffffffffffffffffffffffffffffff1614610667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065e90613610565b60405180910390fd5b60001515600660009054906101000a900460ff161515146106bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b490613630565b60405180910390fd5b6106c681611672565b50565b6060815183511461070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070690613670565b60405180910390fd5b6000835167ffffffffffffffff811115610752577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107805781602001602082028036833780820191505090505b50905060005b845181101561086f576108198582815181106107cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185838151811061080c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516103a8565b828281518110610852577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061086890613a58565b9050610786565b508091505092915050565b610882611307565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806108c857506108c7836108c2611307565b610c10565b5b610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe90613570565b60405180910390fd5b61091283838361168c565b505050565b61091f611307565b73ffffffffffffffffffffffffffffffffffffffff1661093d61099f565b73ffffffffffffffffffffffffffffffffffffffff1614610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90613610565b60405180910390fd5b61099d600061198b565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109d7906139f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a03906139f5565b8015610a505780601f10610a2557610100808354040283529160200191610a50565b820191906000526020600020905b815481529060010190602001808311610a3357829003601f168201915b5050505050905090565b610a6c610a65611307565b8383611a4f565b5050565b600660009054906101000a900460ff1681565b610a8b611307565b73ffffffffffffffffffffffffffffffffffffffff16610aa961099f565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613610565b60405180910390fd5b60008351905060005b81811015610b7057610b5d858281518110610b4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185600186611bbc565b8080610b6890613a58565b915050610b08565b5050505050565b610b7f611307565b73ffffffffffffffffffffffffffffffffffffffff16610b9d61099f565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90613610565b60405180910390fd5b6001600660006101000a81548160ff021916908315150217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610cac611307565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610cf25750610cf185610cec611307565b610c10565b5b610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890613570565b60405180910390fd5b610d3e8585858585611d53565b5050505050565b610d4d611307565b73ffffffffffffffffffffffffffffffffffffffff16610d6b61099f565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890613610565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890613530565b60405180910390fd5b610e3a8161198b565b50565b610e45611307565b73ffffffffffffffffffffffffffffffffffffffff16610e6361099f565b73ffffffffffffffffffffffffffffffffffffffff1614610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090613610565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4157610ef6611307565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f3b573d6000803e3d6000fd5b50610fd7565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610f65611307565b836040518363ffffffff1660e01b8152600401610f83929190613411565b602060405180830381600087803b158015610f9d57600080fd5b505af1158015610fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd59190612e27565b505b5050565b610fe3611307565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611029575061102883611023611307565b610c10565b5b611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613570565b60405180910390fd5b611073838383611fd8565b505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061114357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111535750611152826121f7565b5b9050919050565b606060008214156111a2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611302565b600082905060005b600082146111d45780806111bd90613a58565b915050600a826111cd91906138da565b91506111aa565b60008167ffffffffffffffff811115611216577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112485781602001600182028036833780820191505090505b5090505b600085146112fb57600182611261919061390b565b9150600a856112709190613aa1565b603061127c9190613884565b60f81b8183815181106112b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856112f491906138da565b945061124c565b8093505050505b919050565b600033905090565b8151835114611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613690565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613590565b60405180910390fd5b60006113cd611307565b90506113dd818787878787612261565b60005b84518110156115dd576000858281518110611424577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611469577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561150b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611502906135f0565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115c29190613884565b92505081905550505050806115d690613a58565b90506113e0565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161165492919061345c565b60405180910390a461166a818787878787612277565b505050505050565b8060039080519060200190611688929190612726565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f3906135d0565b60405180910390fd5b8051825114611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790613690565b60405180910390fd5b600061174a611307565b905061176a81856000868660405180602001604052806000815250612261565b60005b83518110156119055760008482815181106117b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106117f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006001600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90613550565b60405180910390fd5b8181036001600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806118fd90613a58565b91505061176d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161197d92919061345c565b60405180910390a450505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590613650565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611baf9190613493565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c23906136b0565b60405180910390fd5b6000611c36611307565b9050611c5781600087611c488861245e565b611c518861245e565b87612261565b826001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb79190613884565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d359291906136eb565b60405180910390a4611d4c81600087878787612524565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba90613590565b60405180910390fd5b6000611dcd611307565b9050611ded818787611dde8861245e565b611de78861245e565b87612261565b60006001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c906135f0565b60405180910390fd5b8381036001600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f3c9190613884565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611fb99291906136eb565b60405180910390a4611fcf828888888888612524565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f906135d0565b60405180910390fd5b6000612052611307565b9050612082818560006120648761245e565b61206d8761245e565b60405180602001604052806000815250612261565b60006001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190613550565b60405180910390fd5b8281036001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516121e89291906136eb565b60405180910390a45050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61226f86868686868661270b565b505050505050565b6122968473ffffffffffffffffffffffffffffffffffffffff16612713565b15612456578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016122dc95949392919061334f565b602060405180830381600087803b1580156122f657600080fd5b505af192505050801561232757506040513d601f19601f820116820180604052508101906123249190612e79565b60015b6123cd57612333613b8e565b806308c379a014156123905750612348614072565b806123535750612392565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238791906134ae565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906134d0565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b906134f0565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156124a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156124d15781602001602082028036833780820191505090505b509050828160008151811061250f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6125438473ffffffffffffffffffffffffffffffffffffffff16612713565b15612703578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016125899594939291906133b7565b602060405180830381600087803b1580156125a357600080fd5b505af19250505080156125d457506040513d601f19601f820116820180604052508101906125d19190612e79565b60015b61267a576125e0613b8e565b806308c379a0141561263d57506125f5614072565b80612600575061263f565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263491906134ae565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612671906134d0565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f8906134f0565b60405180910390fd5b505b505050505050565b505050505050565b600080823b905060008111915050919050565b828054612732906139f5565b90600052602060002090601f016020900481019282612754576000855561279b565b82601f1061276d57805160ff191683800117855561279b565b8280016001018555821561279b579182015b8281111561279a57825182559160200191906001019061277f565b5b5090506127a891906127ac565b5090565b5b808211156127c55760008160009055506001016127ad565b5090565b60006127dc6127d784613739565b613714565b905080838252602082019050828560208602820111156127fb57600080fd5b60005b8581101561282b5781612811888261291d565b8452602084019350602083019250506001810190506127fe565b5050509392505050565b600061284861284384613765565b613714565b9050808382526020820190508285602086028201111561286757600080fd5b60005b85811015612897578161287d8882612a2e565b84526020840193506020830192505060018101905061286a565b5050509392505050565b60006128b46128af84613791565b613714565b9050828152602081018484840111156128cc57600080fd5b6128d78482856139b3565b509392505050565b60006128f26128ed846137c2565b613714565b90508281526020810184848401111561290a57600080fd5b6129158482856139b3565b509392505050565b60008135905061292c81614108565b92915050565b600082601f83011261294357600080fd5b81356129538482602086016127c9565b91505092915050565b600082601f83011261296d57600080fd5b813561297d848260208601612835565b91505092915050565b6000813590506129958161411f565b92915050565b6000815190506129aa8161411f565b92915050565b6000813590506129bf81614136565b92915050565b6000815190506129d481614136565b92915050565b600082601f8301126129eb57600080fd5b81356129fb8482602086016128a1565b91505092915050565b600082601f830112612a1557600080fd5b8135612a258482602086016128df565b91505092915050565b600081359050612a3d8161414d565b92915050565b600060208284031215612a5557600080fd5b6000612a638482850161291d565b91505092915050565b60008060408385031215612a7f57600080fd5b6000612a8d8582860161291d565b9250506020612a9e8582860161291d565b9150509250929050565b600080600080600060a08688031215612ac057600080fd5b6000612ace8882890161291d565b9550506020612adf8882890161291d565b945050604086013567ffffffffffffffff811115612afc57600080fd5b612b088882890161295c565b935050606086013567ffffffffffffffff811115612b2557600080fd5b612b318882890161295c565b925050608086013567ffffffffffffffff811115612b4e57600080fd5b612b5a888289016129da565b9150509295509295909350565b600080600080600060a08688031215612b7f57600080fd5b6000612b8d8882890161291d565b9550506020612b9e8882890161291d565b9450506040612baf88828901612a2e565b9350506060612bc088828901612a2e565b925050608086013567ffffffffffffffff811115612bdd57600080fd5b612be9888289016129da565b9150509295509295909350565b600080600060608486031215612c0b57600080fd5b6000612c198682870161291d565b935050602084013567ffffffffffffffff811115612c3657600080fd5b612c428682870161295c565b925050604084013567ffffffffffffffff811115612c5f57600080fd5b612c6b8682870161295c565b9150509250925092565b60008060408385031215612c8857600080fd5b6000612c968582860161291d565b9250506020612ca785828601612986565b9150509250929050565b60008060408385031215612cc457600080fd5b6000612cd28582860161291d565b9250506020612ce385828601612a2e565b9150509250929050565b600080600060608486031215612d0257600080fd5b6000612d108682870161291d565b9350506020612d2186828701612a2e565b9250506040612d3286828701612a2e565b9150509250925092565b60008060408385031215612d4f57600080fd5b600083013567ffffffffffffffff811115612d6957600080fd5b612d7585828601612932565b925050602083013567ffffffffffffffff811115612d9257600080fd5b612d9e8582860161295c565b9150509250929050565b600080600060608486031215612dbd57600080fd5b600084013567ffffffffffffffff811115612dd757600080fd5b612de386828701612932565b9350506020612df486828701612a2e565b925050604084013567ffffffffffffffff811115612e1157600080fd5b612e1d868287016129da565b9150509250925092565b600060208284031215612e3957600080fd5b6000612e478482850161299b565b91505092915050565b600060208284031215612e6257600080fd5b6000612e70848285016129b0565b91505092915050565b600060208284031215612e8b57600080fd5b6000612e99848285016129c5565b91505092915050565b600060208284031215612eb457600080fd5b600082013567ffffffffffffffff811115612ece57600080fd5b612eda84828501612a04565b91505092915050565b600060208284031215612ef557600080fd5b6000612f0384828501612a2e565b91505092915050565b6000612f1883836132f2565b60208301905092915050565b612f2d8161393f565b82525050565b6000612f3e82613818565b612f488185613846565b9350612f53836137f3565b8060005b83811015612f84578151612f6b8882612f0c565b9750612f7683613839565b925050600181019050612f57565b5085935050505092915050565b612f9a81613951565b82525050565b6000612fab82613823565b612fb58185613857565b9350612fc58185602086016139c2565b612fce81613bb0565b840191505092915050565b6000612fe48261382e565b612fee8185613868565b9350612ffe8185602086016139c2565b61300781613bb0565b840191505092915050565b600061301d8261382e565b6130278185613879565b93506130378185602086016139c2565b80840191505092915050565b60008154613050816139f5565b61305a8186613879565b945060018216600081146130755760018114613086576130b9565b60ff198316865281860193506130b9565b61308f85613803565b60005b838110156130b157815481890152600182019150602081019050613092565b838801955050505b50505092915050565b60006130cf603483613868565b91506130da82613bce565b604082019050919050565b60006130f2602883613868565b91506130fd82613c1d565b604082019050919050565b6000613115602b83613868565b915061312082613c6c565b604082019050919050565b6000613138602683613868565b915061314382613cbb565b604082019050919050565b600061315b602483613868565b915061316682613d0a565b604082019050919050565b600061317e602983613868565b915061318982613d59565b604082019050919050565b60006131a1602583613868565b91506131ac82613da8565b604082019050919050565b60006131c4603283613868565b91506131cf82613df7565b604082019050919050565b60006131e7602383613868565b91506131f282613e46565b604082019050919050565b600061320a602a83613868565b915061321582613e95565b604082019050919050565b600061322d602083613868565b915061323882613ee4565b602082019050919050565b6000613250601583613868565b915061325b82613f0d565b602082019050919050565b6000613273602983613868565b915061327e82613f36565b604082019050919050565b6000613296602983613868565b91506132a182613f85565b604082019050919050565b60006132b9602883613868565b91506132c482613fd4565b604082019050919050565b60006132dc602183613868565b91506132e782614023565b604082019050919050565b6132fb816139a9565b82525050565b61330a816139a9565b82525050565b600061331c8285613043565b91506133288284613012565b91508190509392505050565b60006020820190506133496000830184612f24565b92915050565b600060a0820190506133646000830188612f24565b6133716020830187612f24565b81810360408301526133838186612f33565b905081810360608301526133978185612f33565b905081810360808301526133ab8184612fa0565b90509695505050505050565b600060a0820190506133cc6000830188612f24565b6133d96020830187612f24565b6133e66040830186613301565b6133f36060830185613301565b81810360808301526134058184612fa0565b90509695505050505050565b60006040820190506134266000830185612f24565b6134336020830184613301565b9392505050565b600060208201905081810360008301526134548184612f33565b905092915050565b600060408201905081810360008301526134768185612f33565b9050818103602083015261348a8184612f33565b90509392505050565b60006020820190506134a86000830184612f91565b92915050565b600060208201905081810360008301526134c88184612fd9565b905092915050565b600060208201905081810360008301526134e9816130c2565b9050919050565b60006020820190508181036000830152613509816130e5565b9050919050565b6000602082019050818103600083015261352981613108565b9050919050565b600060208201905081810360008301526135498161312b565b9050919050565b600060208201905081810360008301526135698161314e565b9050919050565b6000602082019050818103600083015261358981613171565b9050919050565b600060208201905081810360008301526135a981613194565b9050919050565b600060208201905081810360008301526135c9816131b7565b9050919050565b600060208201905081810360008301526135e9816131da565b9050919050565b60006020820190508181036000830152613609816131fd565b9050919050565b6000602082019050818103600083015261362981613220565b9050919050565b6000602082019050818103600083015261364981613243565b9050919050565b6000602082019050818103600083015261366981613266565b9050919050565b6000602082019050818103600083015261368981613289565b9050919050565b600060208201905081810360008301526136a9816132ac565b9050919050565b600060208201905081810360008301526136c9816132cf565b9050919050565b60006020820190506136e56000830184613301565b92915050565b60006040820190506137006000830185613301565b61370d6020830184613301565b9392505050565b600061371e61372f565b905061372a8282613a27565b919050565b6000604051905090565b600067ffffffffffffffff82111561375457613753613b5f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137805761377f613b5f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137ac576137ab613b5f565b5b6137b582613bb0565b9050602081019050919050565b600067ffffffffffffffff8211156137dd576137dc613b5f565b5b6137e682613bb0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061388f826139a9565b915061389a836139a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138cf576138ce613ad2565b5b828201905092915050565b60006138e5826139a9565b91506138f0836139a9565b925082613900576138ff613b01565b5b828204905092915050565b6000613916826139a9565b9150613921836139a9565b92508282101561393457613933613ad2565b5b828203905092915050565b600061394a82613989565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139e05780820151818401526020810190506139c5565b838111156139ef576000848401525b50505050565b60006002820490506001821680613a0d57607f821691505b60208210811415613a2157613a20613b30565b5b50919050565b613a3082613bb0565b810181811067ffffffffffffffff82111715613a4f57613a4e613b5f565b5b80604052505050565b6000613a63826139a9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9657613a95613ad2565b5b600182019050919050565b6000613aac826139a9565b9150613ab7836139a9565b925082613ac757613ac6613b01565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613bad5760046000803e613baa600051613bc1565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e2055524973206172652066726f7a656e0000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561408257614105565b61408a61372f565b60043d036004823e80513d602482011167ffffffffffffffff821117156140b2575050614105565b808201805167ffffffffffffffff8111156140d05750505050614105565b80602083010160043d0385018111156140ed575050505050614105565b6140fc82602001850186613a27565b82955050505050505b90565b6141118161393f565b811461411c57600080fd5b50565b61412881613951565b811461413357600080fd5b50565b61413f8161395d565b811461414a57600080fd5b50565b614156816139a9565b811461416157600080fd5b5056fea2646970667358221220e61af49596b9a755c6203ee1bda0902eb0bdf99ac87cd4f1ed706581ec8b33f764736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001143524f2043524f572041495244524f5053000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000843524f5744524f500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d664664736346694d7943563853466f4a77546846656b705a50644554584c625453426952707167446b47464c2f00000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): CRO CROW AIRDROPS
Arg [1] : symbol_ (string): CROWDROP
Arg [2] : uri (string): ipfs://QmfFdscFiMyCV8SFoJwThFekpZPdETXLbTSBiRpqgDkGFL/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 43524f2043524f572041495244524f5053000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 43524f5744524f50000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d664664736346694d7943563853466f4a77546846656b70
Arg [9] : 5a50644554584c625453426952707167446b47464c2f00000000000000000000


Deployed Bytecode Sourcemap

284:1939:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1880:231:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1678:212:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1417:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1574:155:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3819:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1157:160:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2277:524:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;735:353:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1650:94:14;;;:::i;:::-;;999:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1577:95:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2874:155:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;412:34:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;611:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1327:82;;;:::i;:::-;;3101:168:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3341:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1899:192:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;898:251:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;406:321:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1880:231:4;1966:7;2013:1;1994:21;;:7;:21;;;;1986:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:9;:13;2091:2;2081:13;;;;;;;;;;;:22;2095:7;2081:22;;;;;;;;;;;;;;;;2074:29;;1880:231;;;;:::o;1678:212:1:-;1817:4;1846:36;1870:11;1846:23;:36::i;:::-;1839:43;;1678:212;;;:::o;1417:91::-;1462:13;1495:5;1488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1417:91;:::o;1574:155:4:-;1637:13;1694:4;1699:20;1716:2;1699:16;:20::i;:::-;1677:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1663:58;;1574:155;;;:::o;3819:442::-;4060:12;:10;:12::i;:::-;4052:20;;:4;:20;;;:60;;;;4076:36;4093:4;4099:12;:10;:12::i;:::-;4076:16;:36::i;:::-;4052:60;4030:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;4201:52;4224:4;4230:2;4234:3;4239:7;4248:4;4201:22;:52::i;:::-;3819:442;;;;;:::o;1157:160:1:-;1230:12:14;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1255:5:1::1;1237:23;;:14;;;;;;;;;;;:23;;;1229:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;1297:12;1305:3;1297:7;:12::i;:::-;1157:160:::0;:::o;2277:524:4:-;2433:16;2494:3;:10;2475:8;:15;:29;2467:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2563:30;2610:8;:15;2596:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2563:63;;2644:9;2639:122;2663:8;:15;2659:1;:19;2639:122;;;2719:30;2729:8;2738:1;2729:11;;;;;;;;;;;;;;;;;;;;;;2742:3;2746:1;2742:6;;;;;;;;;;;;;;;;;;;;;;2719:9;:30::i;:::-;2700:13;2714:1;2700:16;;;;;;;;;;;;;;;;;;;;;:49;;;;;2680:3;;;;:::i;:::-;;;2639:122;;;;2780:13;2773:20;;;2277:524;;;;:::o;735:353:5:-;911:12;:10;:12::i;:::-;900:23;;:7;:23;;;:66;;;;927:39;944:7;953:12;:10;:12::i;:::-;927:16;:39::i;:::-;900:66;878:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;1048:32;1059:7;1068:3;1073:6;1048:10;:32::i;:::-;735:353;;;:::o;1650:94:14:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;999:87::-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;1577:95:1:-;1624:13;1657:7;1650:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1577:95;:::o;2874:155:4:-;2969:52;2988:12;:10;:12::i;:::-;3002:8;3012;2969:18;:52::i;:::-;2874:155;;:::o;412:34:1:-;;;;;;;;;;;;;:::o;611:279::-;1230:12:14;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;748:13:1::1;764:8;:15;748:31;;795:9;790:93;814:5;810:1;:9;790:93;;;840:31;846:8;855:1;846:11;;;;;;;;;;;;;;;;;;;;;;859:2;863:1;866:4;840:5;:31::i;:::-;821:3;;;;;:::i;:::-;;;;790:93;;;;1290:1:14;611:279:1::0;;;:::o;1327:82::-;1230:12:14;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1397:4:1::1;1380:14;;:21;;;;;;;;;;;;;;;;;;1327:82::o:0;3101:168:4:-;3200:4;3224:18;:27;3243:7;3224:27;;;;;;;;;;;;;;;:37;3252:8;3224:37;;;;;;;;;;;;;;;;;;;;;;;;;3217:44;;3101:168;;;;:::o;3341:401::-;3557:12;:10;:12::i;:::-;3549:20;;:4;:20;;;:60;;;;3573:36;3590:4;3596:12;:10;:12::i;:::-;3573:16;:36::i;:::-;3549:60;3527:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;3689:45;3707:4;3713:2;3717;3721:6;3729:4;3689:17;:45::i;:::-;3341:401;;;;;:::o;1899:192:14:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;898:251:1:-;1230:12:14;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;996:1:1::1;979:19;;:5;:19;;;975:167;;;1023:12;:10;:12::i;:::-;1015:30;;:38;1046:6;1015:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;975:167;;;1093:5;1086:22;;;1109:12;:10;:12::i;:::-;1123:6;1086:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;975:167;898:251:::0;;:::o;406:321:5:-;557:12;:10;:12::i;:::-;546:23;;:7;:23;;;:66;;;;573:39;590:7;599:12;:10;:12::i;:::-;573:16;:39::i;:::-;546:66;524:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;694:25;700:7;709:2;713:5;694;:25::i;:::-;406:321;;;:::o;1256:310:4:-;1358:4;1410:26;1395:41;;;:11;:41;;;;:110;;;;1468:37;1453:52;;;:11;:52;;;;1395:110;:163;;;;1522:36;1546:11;1522:23;:36::i;:::-;1395:163;1375:183;;1256:310;;;:::o;288:723:16:-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;601:98:2:-;654:7;681:10;674:17;;601:98;:::o;5903:1074:4:-;6130:7;:14;6116:3;:10;:28;6108:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;6222:1;6208:16;;:2;:16;;;;6200:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6279:16;6298:12;:10;:12::i;:::-;6279:31;;6323:60;6344:8;6354:4;6360:2;6364:3;6369:7;6378:4;6323:20;:60::i;:::-;6401:9;6396:421;6420:3;:10;6416:1;:14;6396:421;;;6452:10;6465:3;6469:1;6465:6;;;;;;;;;;;;;;;;;;;;;;6452:19;;6486:14;6503:7;6511:1;6503:10;;;;;;;;;;;;;;;;;;;;;;6486:27;;6530:19;6552:9;:13;6562:2;6552:13;;;;;;;;;;;:19;6566:4;6552:19;;;;;;;;;;;;;;;;6530:41;;6609:6;6594:11;:21;;6586:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;6742:6;6728:11;:20;6706:9;:13;6716:2;6706:13;;;;;;;;;;;:19;6720:4;6706:19;;;;;;;;;;;;;;;:42;;;;6799:6;6778:9;:13;6788:2;6778:13;;;;;;;;;;;:17;6792:2;6778:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;6396:421;;;6432:3;;;;:::i;:::-;;;6396:421;;;;6864:2;6834:47;;6858:4;6834:47;;6848:8;6834:47;;;6868:3;6873:7;6834:47;;;;;;;:::i;:::-;;;;;;;;6894:75;6930:8;6940:4;6946:2;6950:3;6955:7;6964:4;6894:35;:75::i;:::-;5903:1074;;;;;;:::o;7821:88::-;7895:6;7888:4;:13;;;;;;;;;;;;:::i;:::-;;7821:88;:::o;11056:891::-;11224:1;11208:18;;:4;:18;;;;11200:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;11299:7;:14;11285:3;:10;:28;11277:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11371:16;11390:12;:10;:12::i;:::-;11371:31;;11415:66;11436:8;11446:4;11460:1;11464:3;11469:7;11415:66;;;;;;;;;;;;:20;:66::i;:::-;11499:9;11494:373;11518:3;:10;11514:1;:14;11494:373;;;11550:10;11563:3;11567:1;11563:6;;;;;;;;;;;;;;;;;;;;;;11550:19;;11584:14;11601:7;11609:1;11601:10;;;;;;;;;;;;;;;;;;;;;;11584:27;;11628:19;11650:9;:13;11660:2;11650:13;;;;;;;;;;;:19;11664:4;11650:19;;;;;;;;;;;;;;;;11628:41;;11707:6;11692:11;:21;;11684:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11834:6;11820:11;:20;11798:9;:13;11808:2;11798:13;;;;;;;;;;;:19;11812:4;11798:19;;;;;;;;;;;;;;;:42;;;;11494:373;;;11530:3;;;;;:::i;:::-;;;;11494:373;;;;11922:1;11884:55;;11908:4;11884:55;;11898:8;11884:55;;;11926:3;11931:7;11884:55;;;;;;;:::i;:::-;;;;;;;;11056:891;;;;:::o;2099:173:14:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2099:173;;:::o;12089:331:4:-;12244:8;12235:17;;:5;:17;;;;12227:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12347:8;12309:18;:25;12328:5;12309:25;;;;;;;;;;;;;;;:35;12335:8;12309:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;12393:8;12371:41;;12386:5;12371:41;;;12403:8;12371:41;;;;;;:::i;:::-;;;;;;;;12089:331;;;:::o;8295:569::-;8462:1;8448:16;;:2;:16;;;;8440:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;8515:16;8534:12;:10;:12::i;:::-;8515:31;;8559:102;8580:8;8598:1;8602:2;8606:21;8624:2;8606:17;:21::i;:::-;8629:25;8647:6;8629:17;:25::i;:::-;8656:4;8559:20;:102::i;:::-;8695:6;8674:9;:13;8684:2;8674:13;;;;;;;;;;;:17;8688:2;8674:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;8754:2;8717:52;;8750:1;8717:52;;8732:8;8717:52;;;8758:2;8762:6;8717:52;;;;;;;:::i;:::-;;;;;;;;8782:74;8813:8;8831:1;8835:2;8839;8843:6;8851:4;8782:30;:74::i;:::-;8295:569;;;;;:::o;4725:820::-;4927:1;4913:16;;:2;:16;;;;4905:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;4984:16;5003:12;:10;:12::i;:::-;4984:31;;5028:96;5049:8;5059:4;5065:2;5069:21;5087:2;5069:17;:21::i;:::-;5092:25;5110:6;5092:17;:25::i;:::-;5119:4;5028:20;:96::i;:::-;5137:19;5159:9;:13;5169:2;5159:13;;;;;;;;;;;:19;5173:4;5159:19;;;;;;;;;;;;;;;;5137:41;;5212:6;5197:11;:21;;5189:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5337:6;5323:11;:20;5301:9;:13;5311:2;5301:13;;;;;;;;;;;:19;5315:4;5301:19;;;;;;;;;;;;;;;:42;;;;5386:6;5365:9;:13;5375:2;5365:13;;;;;;;;;;;:17;5379:2;5365:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;5441:2;5410:46;;5435:4;5410:46;;5425:8;5410:46;;;5445:2;5449:6;5410:46;;;;;;;:::i;:::-;;;;;;;;5469:68;5500:8;5510:4;5516:2;5520;5524:6;5532:4;5469:30;:68::i;:::-;4725:820;;;;;;;:::o;10205:648::-;10348:1;10332:18;;:4;:18;;;;10324:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;10403:16;10422:12;:10;:12::i;:::-;10403:31;;10447:102;10468:8;10478:4;10492:1;10496:21;10514:2;10496:17;:21::i;:::-;10519:25;10537:6;10519:17;:25::i;:::-;10447:102;;;;;;;;;;;;:20;:102::i;:::-;10562:19;10584:9;:13;10594:2;10584:13;;;;;;;;;;;:19;10598:4;10584:19;;;;;;;;;;;;;;;;10562:41;;10637:6;10622:11;:21;;10614:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10756:6;10742:11;:20;10720:9;:13;10730:2;10720:13;;;;;;;;;;;:19;10734:4;10720:19;;;;;;;;;;;;;;;:42;;;;10830:1;10791:54;;10816:4;10791:54;;10806:8;10791:54;;;10834:2;10838:6;10791:54;;;;;;;:::i;:::-;;;;;;;;10205:648;;;;;:::o;787:157:8:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;1898:322:1:-;2146:66;2173:8;2183:4;2189:2;2193:3;2198:7;2207:4;2146:26;:66::i;:::-;1898:322;;;;;;:::o;14357:813:4:-;14597:15;:2;:13;;;:15::i;:::-;14593:570;;;14650:2;14633:43;;;14677:8;14687:4;14693:3;14698:7;14707:4;14633:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14629:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;15025:6;15018:14;;;;;;;;;;;:::i;:::-;;;;;;;;14629:523;;;15074:62;;;;;;;;;;:::i;:::-;;;;;;;;14629:523;14806:48;;;14794:60;;;:8;:60;;;;14790:159;;14879:50;;;;;;;;;;:::i;:::-;;;;;;;;14790:159;14713:251;14593:570;14357:813;;;;;;:::o;15178:198::-;15244:16;15273:22;15312:1;15298:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15273:41;;15336:7;15325:5;15331:1;15325:8;;;;;;;;;;;;;;;;;;;;;:18;;;;;15363:5;15356:12;;;15178:198;;;:::o;13605:744::-;13820:15;:2;:13;;;:15::i;:::-;13816:526;;;13873:2;13856:38;;;13895:8;13905:4;13911:2;13915:6;13923:4;13856:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;13852:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;14204:6;14197:14;;;;;;;;;;;:::i;:::-;;;;;;;;13852:479;;;14253:62;;;;;;;;;;:::i;:::-;;;;;;;;13852:479;13990:43;;;13978:55;;;:8;:55;;;;13974:154;;14058:50;;;;;;;;;;:::i;:::-;;;;;;;;13974:154;13929:214;13816:526;13605:744;;;;;;:::o;13376:221::-;;;;;;;:::o;743:387:0:-;803:4;1011:12;1078:7;1066:20;1058:28;;1121:1;1114:4;:8;1107:15;;;743:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:17:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;702:655::-;798:5;823:81;839:64;896:6;839:64;:::i;:::-;823:81;:::i;:::-;814:90;;924:5;953:6;946:5;939:21;987:4;980:5;976:16;969:23;;1013:6;1063:3;1055:4;1047:6;1043:17;1038:3;1034:27;1031:36;1028:2;;;1092:1;1089;1082:12;1028:2;1128:1;1113:238;1138:6;1135:1;1132:13;1113:238;;;1206:3;1235:37;1268:3;1256:10;1235:37;:::i;:::-;1230:3;1223:50;1302:4;1297:3;1293:14;1286:21;;1336:4;1331:3;1327:14;1320:21;;1173:178;1160:1;1157;1153:9;1148:14;;1113:238;;;1117:14;804:553;;;;;;;:::o;1363:343::-;1440:5;1465:65;1481:48;1522:6;1481:48;:::i;:::-;1465:65;:::i;:::-;1456:74;;1553:6;1546:5;1539:21;1591:4;1584:5;1580:16;1629:3;1620:6;1615:3;1611:16;1608:25;1605:2;;;1646:1;1643;1636:12;1605:2;1659:41;1693:6;1688:3;1683;1659:41;:::i;:::-;1446:260;;;;;;:::o;1712:345::-;1790:5;1815:66;1831:49;1873:6;1831:49;:::i;:::-;1815:66;:::i;:::-;1806:75;;1904:6;1897:5;1890:21;1942:4;1935:5;1931:16;1980:3;1971:6;1966:3;1962:16;1959:25;1956:2;;;1997:1;1994;1987:12;1956:2;2010:41;2044:6;2039:3;2034;2010:41;:::i;:::-;1796:261;;;;;;:::o;2063:139::-;2109:5;2147:6;2134:20;2125:29;;2163:33;2190:5;2163:33;:::i;:::-;2115:87;;;;:::o;2225:303::-;2296:5;2345:3;2338:4;2330:6;2326:17;2322:27;2312:2;;2363:1;2360;2353:12;2312:2;2403:6;2390:20;2428:94;2518:3;2510:6;2503:4;2495:6;2491:17;2428:94;:::i;:::-;2419:103;;2302:226;;;;;:::o;2551:303::-;2622:5;2671:3;2664:4;2656:6;2652:17;2648:27;2638:2;;2689:1;2686;2679:12;2638:2;2729:6;2716:20;2754:94;2844:3;2836:6;2829:4;2821:6;2817:17;2754:94;:::i;:::-;2745:103;;2628:226;;;;;:::o;2860:133::-;2903:5;2941:6;2928:20;2919:29;;2957:30;2981:5;2957:30;:::i;:::-;2909:84;;;;:::o;2999:137::-;3053:5;3084:6;3078:13;3069:22;;3100:30;3124:5;3100:30;:::i;:::-;3059:77;;;;:::o;3142:137::-;3187:5;3225:6;3212:20;3203:29;;3241:32;3267:5;3241:32;:::i;:::-;3193:86;;;;:::o;3285:141::-;3341:5;3372:6;3366:13;3357:22;;3388:32;3414:5;3388:32;:::i;:::-;3347:79;;;;:::o;3445:271::-;3500:5;3549:3;3542:4;3534:6;3530:17;3526:27;3516:2;;3567:1;3564;3557:12;3516:2;3607:6;3594:20;3632:78;3706:3;3698:6;3691:4;3683:6;3679:17;3632:78;:::i;:::-;3623:87;;3506:210;;;;;:::o;3736:273::-;3792:5;3841:3;3834:4;3826:6;3822:17;3818:27;3808:2;;3859:1;3856;3849:12;3808:2;3899:6;3886:20;3924:79;3999:3;3991:6;3984:4;3976:6;3972:17;3924:79;:::i;:::-;3915:88;;3798:211;;;;;:::o;4015:139::-;4061:5;4099:6;4086:20;4077:29;;4115:33;4142:5;4115:33;:::i;:::-;4067:87;;;;:::o;4160:262::-;4219:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:2;;;4284:1;4281;4274:12;4236:2;4327:1;4352:53;4397:7;4388:6;4377:9;4373:22;4352:53;:::i;:::-;4342:63;;4298:117;4226:196;;;;:::o;4428:407::-;4496:6;4504;4553:2;4541:9;4532:7;4528:23;4524:32;4521:2;;;4569:1;4566;4559:12;4521:2;4612:1;4637:53;4682:7;4673:6;4662:9;4658:22;4637:53;:::i;:::-;4627:63;;4583:117;4739:2;4765:53;4810:7;4801:6;4790:9;4786:22;4765:53;:::i;:::-;4755:63;;4710:118;4511:324;;;;;:::o;4841:1241::-;4995:6;5003;5011;5019;5027;5076:3;5064:9;5055:7;5051:23;5047:33;5044:2;;;5093:1;5090;5083:12;5044:2;5136:1;5161:53;5206:7;5197:6;5186:9;5182:22;5161:53;:::i;:::-;5151:63;;5107:117;5263:2;5289:53;5334:7;5325:6;5314:9;5310:22;5289:53;:::i;:::-;5279:63;;5234:118;5419:2;5408:9;5404:18;5391:32;5450:18;5442:6;5439:30;5436:2;;;5482:1;5479;5472:12;5436:2;5510:78;5580:7;5571:6;5560:9;5556:22;5510:78;:::i;:::-;5500:88;;5362:236;5665:2;5654:9;5650:18;5637:32;5696:18;5688:6;5685:30;5682:2;;;5728:1;5725;5718:12;5682:2;5756:78;5826:7;5817:6;5806:9;5802:22;5756:78;:::i;:::-;5746:88;;5608:236;5911:3;5900:9;5896:19;5883:33;5943:18;5935:6;5932:30;5929:2;;;5975:1;5972;5965:12;5929:2;6003:62;6057:7;6048:6;6037:9;6033:22;6003:62;:::i;:::-;5993:72;;5854:221;5034:1048;;;;;;;;:::o;6088:955::-;6192:6;6200;6208;6216;6224;6273:3;6261:9;6252:7;6248:23;6244:33;6241:2;;;6290:1;6287;6280:12;6241:2;6333:1;6358:53;6403:7;6394:6;6383:9;6379:22;6358:53;:::i;:::-;6348:63;;6304:117;6460:2;6486:53;6531:7;6522:6;6511:9;6507:22;6486:53;:::i;:::-;6476:63;;6431:118;6588:2;6614:53;6659:7;6650:6;6639:9;6635:22;6614:53;:::i;:::-;6604:63;;6559:118;6716:2;6742:53;6787:7;6778:6;6767:9;6763:22;6742:53;:::i;:::-;6732:63;;6687:118;6872:3;6861:9;6857:19;6844:33;6904:18;6896:6;6893:30;6890:2;;;6936:1;6933;6926:12;6890:2;6964:62;7018:7;7009:6;6998:9;6994:22;6964:62;:::i;:::-;6954:72;;6815:221;6231:812;;;;;;;;:::o;7049:838::-;7176:6;7184;7192;7241:2;7229:9;7220:7;7216:23;7212:32;7209:2;;;7257:1;7254;7247:12;7209:2;7300:1;7325:53;7370:7;7361:6;7350:9;7346:22;7325:53;:::i;:::-;7315:63;;7271:117;7455:2;7444:9;7440:18;7427:32;7486:18;7478:6;7475:30;7472:2;;;7518:1;7515;7508:12;7472:2;7546:78;7616:7;7607:6;7596:9;7592:22;7546:78;:::i;:::-;7536:88;;7398:236;7701:2;7690:9;7686:18;7673:32;7732:18;7724:6;7721:30;7718:2;;;7764:1;7761;7754:12;7718:2;7792:78;7862:7;7853:6;7842:9;7838:22;7792:78;:::i;:::-;7782:88;;7644:236;7199:688;;;;;:::o;7893:401::-;7958:6;7966;8015:2;8003:9;7994:7;7990:23;7986:32;7983:2;;;8031:1;8028;8021:12;7983:2;8074:1;8099:53;8144:7;8135:6;8124:9;8120:22;8099:53;:::i;:::-;8089:63;;8045:117;8201:2;8227:50;8269:7;8260:6;8249:9;8245:22;8227:50;:::i;:::-;8217:60;;8172:115;7973:321;;;;;:::o;8300:407::-;8368:6;8376;8425:2;8413:9;8404:7;8400:23;8396:32;8393:2;;;8441:1;8438;8431:12;8393:2;8484:1;8509:53;8554:7;8545:6;8534:9;8530:22;8509:53;:::i;:::-;8499:63;;8455:117;8611:2;8637:53;8682:7;8673:6;8662:9;8658:22;8637:53;:::i;:::-;8627:63;;8582:118;8383:324;;;;;:::o;8713:552::-;8790:6;8798;8806;8855:2;8843:9;8834:7;8830:23;8826:32;8823:2;;;8871:1;8868;8861:12;8823:2;8914:1;8939:53;8984:7;8975:6;8964:9;8960:22;8939:53;:::i;:::-;8929:63;;8885:117;9041:2;9067:53;9112:7;9103:6;9092:9;9088:22;9067:53;:::i;:::-;9057:63;;9012:118;9169:2;9195:53;9240:7;9231:6;9220:9;9216:22;9195:53;:::i;:::-;9185:63;;9140:118;8813:452;;;;;:::o;9271:693::-;9389:6;9397;9446:2;9434:9;9425:7;9421:23;9417:32;9414:2;;;9462:1;9459;9452:12;9414:2;9533:1;9522:9;9518:17;9505:31;9563:18;9555:6;9552:30;9549:2;;;9595:1;9592;9585:12;9549:2;9623:78;9693:7;9684:6;9673:9;9669:22;9623:78;:::i;:::-;9613:88;;9476:235;9778:2;9767:9;9763:18;9750:32;9809:18;9801:6;9798:30;9795:2;;;9841:1;9838;9831:12;9795:2;9869:78;9939:7;9930:6;9919:9;9915:22;9869:78;:::i;:::-;9859:88;;9721:236;9404:560;;;;;:::o;9970:806::-;10081:6;10089;10097;10146:2;10134:9;10125:7;10121:23;10117:32;10114:2;;;10162:1;10159;10152:12;10114:2;10233:1;10222:9;10218:17;10205:31;10263:18;10255:6;10252:30;10249:2;;;10295:1;10292;10285:12;10249:2;10323:78;10393:7;10384:6;10373:9;10369:22;10323:78;:::i;:::-;10313:88;;10176:235;10450:2;10476:53;10521:7;10512:6;10501:9;10497:22;10476:53;:::i;:::-;10466:63;;10421:118;10606:2;10595:9;10591:18;10578:32;10637:18;10629:6;10626:30;10623:2;;;10669:1;10666;10659:12;10623:2;10697:62;10751:7;10742:6;10731:9;10727:22;10697:62;:::i;:::-;10687:72;;10549:220;10104:672;;;;;:::o;10782:278::-;10849:6;10898:2;10886:9;10877:7;10873:23;10869:32;10866:2;;;10914:1;10911;10904:12;10866:2;10957:1;10982:61;11035:7;11026:6;11015:9;11011:22;10982:61;:::i;:::-;10972:71;;10928:125;10856:204;;;;:::o;11066:260::-;11124:6;11173:2;11161:9;11152:7;11148:23;11144:32;11141:2;;;11189:1;11186;11179:12;11141:2;11232:1;11257:52;11301:7;11292:6;11281:9;11277:22;11257:52;:::i;:::-;11247:62;;11203:116;11131:195;;;;:::o;11332:282::-;11401:6;11450:2;11438:9;11429:7;11425:23;11421:32;11418:2;;;11466:1;11463;11456:12;11418:2;11509:1;11534:63;11589:7;11580:6;11569:9;11565:22;11534:63;:::i;:::-;11524:73;;11480:127;11408:206;;;;:::o;11620:375::-;11689:6;11738:2;11726:9;11717:7;11713:23;11709:32;11706:2;;;11754:1;11751;11744:12;11706:2;11825:1;11814:9;11810:17;11797:31;11855:18;11847:6;11844:30;11841:2;;;11887:1;11884;11877:12;11841:2;11915:63;11970:7;11961:6;11950:9;11946:22;11915:63;:::i;:::-;11905:73;;11768:220;11696:299;;;;:::o;12001:262::-;12060:6;12109:2;12097:9;12088:7;12084:23;12080:32;12077:2;;;12125:1;12122;12115:12;12077:2;12168:1;12193:53;12238:7;12229:6;12218:9;12214:22;12193:53;:::i;:::-;12183:63;;12139:117;12067:196;;;;:::o;12269:179::-;12338:10;12359:46;12401:3;12393:6;12359:46;:::i;:::-;12437:4;12432:3;12428:14;12414:28;;12349:99;;;;:::o;12454:118::-;12541:24;12559:5;12541:24;:::i;:::-;12536:3;12529:37;12519:53;;:::o;12608:732::-;12727:3;12756:54;12804:5;12756:54;:::i;:::-;12826:86;12905:6;12900:3;12826:86;:::i;:::-;12819:93;;12936:56;12986:5;12936:56;:::i;:::-;13015:7;13046:1;13031:284;13056:6;13053:1;13050:13;13031:284;;;13132:6;13126:13;13159:63;13218:3;13203:13;13159:63;:::i;:::-;13152:70;;13245:60;13298:6;13245:60;:::i;:::-;13235:70;;13091:224;13078:1;13075;13071:9;13066:14;;13031:284;;;13035:14;13331:3;13324:10;;12732:608;;;;;;;:::o;13346:109::-;13427:21;13442:5;13427:21;:::i;:::-;13422:3;13415:34;13405:50;;:::o;13461:360::-;13547:3;13575:38;13607:5;13575:38;:::i;:::-;13629:70;13692:6;13687:3;13629:70;:::i;:::-;13622:77;;13708:52;13753:6;13748:3;13741:4;13734:5;13730:16;13708:52;:::i;:::-;13785:29;13807:6;13785:29;:::i;:::-;13780:3;13776:39;13769:46;;13551:270;;;;;:::o;13827:364::-;13915:3;13943:39;13976:5;13943:39;:::i;:::-;13998:71;14062:6;14057:3;13998:71;:::i;:::-;13991:78;;14078:52;14123:6;14118:3;14111:4;14104:5;14100:16;14078:52;:::i;:::-;14155:29;14177:6;14155:29;:::i;:::-;14150:3;14146:39;14139:46;;13919:272;;;;;:::o;14197:377::-;14303:3;14331:39;14364:5;14331:39;:::i;:::-;14386:89;14468:6;14463:3;14386:89;:::i;:::-;14379:96;;14484:52;14529:6;14524:3;14517:4;14510:5;14506:16;14484:52;:::i;:::-;14561:6;14556:3;14552:16;14545:23;;14307:267;;;;;:::o;14604:845::-;14707:3;14744:5;14738:12;14773:36;14799:9;14773:36;:::i;:::-;14825:89;14907:6;14902:3;14825:89;:::i;:::-;14818:96;;14945:1;14934:9;14930:17;14961:1;14956:137;;;;15107:1;15102:341;;;;14923:520;;14956:137;15040:4;15036:9;15025;15021:25;15016:3;15009:38;15076:6;15071:3;15067:16;15060:23;;14956:137;;15102:341;15169:38;15201:5;15169:38;:::i;:::-;15229:1;15243:154;15257:6;15254:1;15251:13;15243:154;;;15331:7;15325:14;15321:1;15316:3;15312:11;15305:35;15381:1;15372:7;15368:15;15357:26;;15279:4;15276:1;15272:12;15267:17;;15243:154;;;15426:6;15421:3;15417:16;15410:23;;15109:334;;14923:520;;14711:738;;;;;;:::o;15455:366::-;15597:3;15618:67;15682:2;15677:3;15618:67;:::i;:::-;15611:74;;15694:93;15783:3;15694:93;:::i;:::-;15812:2;15807:3;15803:12;15796:19;;15601:220;;;:::o;15827:366::-;15969:3;15990:67;16054:2;16049:3;15990:67;:::i;:::-;15983:74;;16066:93;16155:3;16066:93;:::i;:::-;16184:2;16179:3;16175:12;16168:19;;15973:220;;;:::o;16199:366::-;16341:3;16362:67;16426:2;16421:3;16362:67;:::i;:::-;16355:74;;16438:93;16527:3;16438:93;:::i;:::-;16556:2;16551:3;16547:12;16540:19;;16345:220;;;:::o;16571:366::-;16713:3;16734:67;16798:2;16793:3;16734:67;:::i;:::-;16727:74;;16810:93;16899:3;16810:93;:::i;:::-;16928:2;16923:3;16919:12;16912:19;;16717:220;;;:::o;16943:366::-;17085:3;17106:67;17170:2;17165:3;17106:67;:::i;:::-;17099:74;;17182:93;17271:3;17182:93;:::i;:::-;17300:2;17295:3;17291:12;17284:19;;17089:220;;;:::o;17315:366::-;17457:3;17478:67;17542:2;17537:3;17478:67;:::i;:::-;17471:74;;17554:93;17643:3;17554:93;:::i;:::-;17672:2;17667:3;17663:12;17656:19;;17461:220;;;:::o;17687:366::-;17829:3;17850:67;17914:2;17909:3;17850:67;:::i;:::-;17843:74;;17926:93;18015:3;17926:93;:::i;:::-;18044:2;18039:3;18035:12;18028:19;;17833:220;;;:::o;18059:366::-;18201:3;18222:67;18286:2;18281:3;18222:67;:::i;:::-;18215:74;;18298:93;18387:3;18298:93;:::i;:::-;18416:2;18411:3;18407:12;18400:19;;18205:220;;;:::o;18431:366::-;18573:3;18594:67;18658:2;18653:3;18594:67;:::i;:::-;18587:74;;18670:93;18759:3;18670:93;:::i;:::-;18788:2;18783:3;18779:12;18772:19;;18577:220;;;:::o;18803:366::-;18945:3;18966:67;19030:2;19025:3;18966:67;:::i;:::-;18959:74;;19042:93;19131:3;19042:93;:::i;:::-;19160:2;19155:3;19151:12;19144:19;;18949:220;;;:::o;19175:366::-;19317:3;19338:67;19402:2;19397:3;19338:67;:::i;:::-;19331:74;;19414:93;19503:3;19414:93;:::i;:::-;19532:2;19527:3;19523:12;19516:19;;19321:220;;;:::o;19547:366::-;19689:3;19710:67;19774:2;19769:3;19710:67;:::i;:::-;19703:74;;19786:93;19875:3;19786:93;:::i;:::-;19904:2;19899:3;19895:12;19888:19;;19693:220;;;:::o;19919:366::-;20061:3;20082:67;20146:2;20141:3;20082:67;:::i;:::-;20075:74;;20158:93;20247:3;20158:93;:::i;:::-;20276:2;20271:3;20267:12;20260:19;;20065:220;;;:::o;20291:366::-;20433:3;20454:67;20518:2;20513:3;20454:67;:::i;:::-;20447:74;;20530:93;20619:3;20530:93;:::i;:::-;20648:2;20643:3;20639:12;20632:19;;20437:220;;;:::o;20663:366::-;20805:3;20826:67;20890:2;20885:3;20826:67;:::i;:::-;20819:74;;20902:93;20991:3;20902:93;:::i;:::-;21020:2;21015:3;21011:12;21004:19;;20809:220;;;:::o;21035:366::-;21177:3;21198:67;21262:2;21257:3;21198:67;:::i;:::-;21191:74;;21274:93;21363:3;21274:93;:::i;:::-;21392:2;21387:3;21383:12;21376:19;;21181:220;;;:::o;21407:108::-;21484:24;21502:5;21484:24;:::i;:::-;21479:3;21472:37;21462:53;;:::o;21521:118::-;21608:24;21626:5;21608:24;:::i;:::-;21603:3;21596:37;21586:53;;:::o;21645:429::-;21822:3;21844:92;21932:3;21923:6;21844:92;:::i;:::-;21837:99;;21953:95;22044:3;22035:6;21953:95;:::i;:::-;21946:102;;22065:3;22058:10;;21826:248;;;;;:::o;22080:222::-;22173:4;22211:2;22200:9;22196:18;22188:26;;22224:71;22292:1;22281:9;22277:17;22268:6;22224:71;:::i;:::-;22178:124;;;;:::o;22308:1053::-;22631:4;22669:3;22658:9;22654:19;22646:27;;22683:71;22751:1;22740:9;22736:17;22727:6;22683:71;:::i;:::-;22764:72;22832:2;22821:9;22817:18;22808:6;22764:72;:::i;:::-;22883:9;22877:4;22873:20;22868:2;22857:9;22853:18;22846:48;22911:108;23014:4;23005:6;22911:108;:::i;:::-;22903:116;;23066:9;23060:4;23056:20;23051:2;23040:9;23036:18;23029:48;23094:108;23197:4;23188:6;23094:108;:::i;:::-;23086:116;;23250:9;23244:4;23240:20;23234:3;23223:9;23219:19;23212:49;23278:76;23349:4;23340:6;23278:76;:::i;:::-;23270:84;;22636:725;;;;;;;;:::o;23367:751::-;23590:4;23628:3;23617:9;23613:19;23605:27;;23642:71;23710:1;23699:9;23695:17;23686:6;23642:71;:::i;:::-;23723:72;23791:2;23780:9;23776:18;23767:6;23723:72;:::i;:::-;23805;23873:2;23862:9;23858:18;23849:6;23805:72;:::i;:::-;23887;23955:2;23944:9;23940:18;23931:6;23887:72;:::i;:::-;24007:9;24001:4;23997:20;23991:3;23980:9;23976:19;23969:49;24035:76;24106:4;24097:6;24035:76;:::i;:::-;24027:84;;23595:523;;;;;;;;:::o;24124:332::-;24245:4;24283:2;24272:9;24268:18;24260:26;;24296:71;24364:1;24353:9;24349:17;24340:6;24296:71;:::i;:::-;24377:72;24445:2;24434:9;24430:18;24421:6;24377:72;:::i;:::-;24250:206;;;;;:::o;24462:373::-;24605:4;24643:2;24632:9;24628:18;24620:26;;24692:9;24686:4;24682:20;24678:1;24667:9;24663:17;24656:47;24720:108;24823:4;24814:6;24720:108;:::i;:::-;24712:116;;24610:225;;;;:::o;24841:634::-;25062:4;25100:2;25089:9;25085:18;25077:26;;25149:9;25143:4;25139:20;25135:1;25124:9;25120:17;25113:47;25177:108;25280:4;25271:6;25177:108;:::i;:::-;25169:116;;25332:9;25326:4;25322:20;25317:2;25306:9;25302:18;25295:48;25360:108;25463:4;25454:6;25360:108;:::i;:::-;25352:116;;25067:408;;;;;:::o;25481:210::-;25568:4;25606:2;25595:9;25591:18;25583:26;;25619:65;25681:1;25670:9;25666:17;25657:6;25619:65;:::i;:::-;25573:118;;;;:::o;25697:313::-;25810:4;25848:2;25837:9;25833:18;25825:26;;25897:9;25891:4;25887:20;25883:1;25872:9;25868:17;25861:47;25925:78;25998:4;25989:6;25925:78;:::i;:::-;25917:86;;25815:195;;;;:::o;26016:419::-;26182:4;26220:2;26209:9;26205:18;26197:26;;26269:9;26263:4;26259:20;26255:1;26244:9;26240:17;26233:47;26297:131;26423:4;26297:131;:::i;:::-;26289:139;;26187:248;;;:::o;26441:419::-;26607:4;26645:2;26634:9;26630:18;26622:26;;26694:9;26688:4;26684:20;26680:1;26669:9;26665:17;26658:47;26722:131;26848:4;26722:131;:::i;:::-;26714:139;;26612:248;;;:::o;26866:419::-;27032:4;27070:2;27059:9;27055:18;27047:26;;27119:9;27113:4;27109:20;27105:1;27094:9;27090:17;27083:47;27147:131;27273:4;27147:131;:::i;:::-;27139:139;;27037:248;;;:::o;27291:419::-;27457:4;27495:2;27484:9;27480:18;27472:26;;27544:9;27538:4;27534:20;27530:1;27519:9;27515:17;27508:47;27572:131;27698:4;27572:131;:::i;:::-;27564:139;;27462:248;;;:::o;27716:419::-;27882:4;27920:2;27909:9;27905:18;27897:26;;27969:9;27963:4;27959:20;27955:1;27944:9;27940:17;27933:47;27997:131;28123:4;27997:131;:::i;:::-;27989:139;;27887:248;;;:::o;28141:419::-;28307:4;28345:2;28334:9;28330:18;28322:26;;28394:9;28388:4;28384:20;28380:1;28369:9;28365:17;28358:47;28422:131;28548:4;28422:131;:::i;:::-;28414:139;;28312:248;;;:::o;28566:419::-;28732:4;28770:2;28759:9;28755:18;28747:26;;28819:9;28813:4;28809:20;28805:1;28794:9;28790:17;28783:47;28847:131;28973:4;28847:131;:::i;:::-;28839:139;;28737:248;;;:::o;28991:419::-;29157:4;29195:2;29184:9;29180:18;29172:26;;29244:9;29238:4;29234:20;29230:1;29219:9;29215:17;29208:47;29272:131;29398:4;29272:131;:::i;:::-;29264:139;;29162:248;;;:::o;29416:419::-;29582:4;29620:2;29609:9;29605:18;29597:26;;29669:9;29663:4;29659:20;29655:1;29644:9;29640:17;29633:47;29697:131;29823:4;29697:131;:::i;:::-;29689:139;;29587:248;;;:::o;29841:419::-;30007:4;30045:2;30034:9;30030:18;30022:26;;30094:9;30088:4;30084:20;30080:1;30069:9;30065:17;30058:47;30122:131;30248:4;30122:131;:::i;:::-;30114:139;;30012:248;;;:::o;30266:419::-;30432:4;30470:2;30459:9;30455:18;30447:26;;30519:9;30513:4;30509:20;30505:1;30494:9;30490:17;30483:47;30547:131;30673:4;30547:131;:::i;:::-;30539:139;;30437:248;;;:::o;30691:419::-;30857:4;30895:2;30884:9;30880:18;30872:26;;30944:9;30938:4;30934:20;30930:1;30919:9;30915:17;30908:47;30972:131;31098:4;30972:131;:::i;:::-;30964:139;;30862:248;;;:::o;31116:419::-;31282:4;31320:2;31309:9;31305:18;31297:26;;31369:9;31363:4;31359:20;31355:1;31344:9;31340:17;31333:47;31397:131;31523:4;31397:131;:::i;:::-;31389:139;;31287:248;;;:::o;31541:419::-;31707:4;31745:2;31734:9;31730:18;31722:26;;31794:9;31788:4;31784:20;31780:1;31769:9;31765:17;31758:47;31822:131;31948:4;31822:131;:::i;:::-;31814:139;;31712:248;;;:::o;31966:419::-;32132:4;32170:2;32159:9;32155:18;32147:26;;32219:9;32213:4;32209:20;32205:1;32194:9;32190:17;32183:47;32247:131;32373:4;32247:131;:::i;:::-;32239:139;;32137:248;;;:::o;32391:419::-;32557:4;32595:2;32584:9;32580:18;32572:26;;32644:9;32638:4;32634:20;32630:1;32619:9;32615:17;32608:47;32672:131;32798:4;32672:131;:::i;:::-;32664:139;;32562:248;;;:::o;32816:222::-;32909:4;32947:2;32936:9;32932:18;32924:26;;32960:71;33028:1;33017:9;33013:17;33004:6;32960:71;:::i;:::-;32914:124;;;;:::o;33044:332::-;33165:4;33203:2;33192:9;33188:18;33180:26;;33216:71;33284:1;33273:9;33269:17;33260:6;33216:71;:::i;:::-;33297:72;33365:2;33354:9;33350:18;33341:6;33297:72;:::i;:::-;33170:206;;;;;:::o;33382:129::-;33416:6;33443:20;;:::i;:::-;33433:30;;33472:33;33500:4;33492:6;33472:33;:::i;:::-;33423:88;;;:::o;33517:75::-;33550:6;33583:2;33577:9;33567:19;;33557:35;:::o;33598:311::-;33675:4;33765:18;33757:6;33754:30;33751:2;;;33787:18;;:::i;:::-;33751:2;33837:4;33829:6;33825:17;33817:25;;33897:4;33891;33887:15;33879:23;;33680:229;;;:::o;33915:311::-;33992:4;34082:18;34074:6;34071:30;34068:2;;;34104:18;;:::i;:::-;34068:2;34154:4;34146:6;34142:17;34134:25;;34214:4;34208;34204:15;34196:23;;33997:229;;;:::o;34232:307::-;34293:4;34383:18;34375:6;34372:30;34369:2;;;34405:18;;:::i;:::-;34369:2;34443:29;34465:6;34443:29;:::i;:::-;34435:37;;34527:4;34521;34517:15;34509:23;;34298:241;;;:::o;34545:308::-;34607:4;34697:18;34689:6;34686:30;34683:2;;;34719:18;;:::i;:::-;34683:2;34757:29;34779:6;34757:29;:::i;:::-;34749:37;;34841:4;34835;34831:15;34823:23;;34612:241;;;:::o;34859:132::-;34926:4;34949:3;34941:11;;34979:4;34974:3;34970:14;34962:22;;34931:60;;;:::o;34997:141::-;35046:4;35069:3;35061:11;;35092:3;35089:1;35082:14;35126:4;35123:1;35113:18;35105:26;;35051:87;;;:::o;35144:114::-;35211:6;35245:5;35239:12;35229:22;;35218:40;;;:::o;35264:98::-;35315:6;35349:5;35343:12;35333:22;;35322:40;;;:::o;35368:99::-;35420:6;35454:5;35448:12;35438:22;;35427:40;;;:::o;35473:113::-;35543:4;35575;35570:3;35566:14;35558:22;;35548:38;;;:::o;35592:184::-;35691:11;35725:6;35720:3;35713:19;35765:4;35760:3;35756:14;35741:29;;35703:73;;;;:::o;35782:168::-;35865:11;35899:6;35894:3;35887:19;35939:4;35934:3;35930:14;35915:29;;35877:73;;;;:::o;35956:169::-;36040:11;36074:6;36069:3;36062:19;36114:4;36109:3;36105:14;36090:29;;36052:73;;;;:::o;36131:148::-;36233:11;36270:3;36255:18;;36245:34;;;;:::o;36285:305::-;36325:3;36344:20;36362:1;36344:20;:::i;:::-;36339:25;;36378:20;36396:1;36378:20;:::i;:::-;36373:25;;36532:1;36464:66;36460:74;36457:1;36454:81;36451:2;;;36538:18;;:::i;:::-;36451:2;36582:1;36579;36575:9;36568:16;;36329:261;;;;:::o;36596:185::-;36636:1;36653:20;36671:1;36653:20;:::i;:::-;36648:25;;36687:20;36705:1;36687:20;:::i;:::-;36682:25;;36726:1;36716:2;;36731:18;;:::i;:::-;36716:2;36773:1;36770;36766:9;36761:14;;36638:143;;;;:::o;36787:191::-;36827:4;36847:20;36865:1;36847:20;:::i;:::-;36842:25;;36881:20;36899:1;36881:20;:::i;:::-;36876:25;;36920:1;36917;36914:8;36911:2;;;36925:18;;:::i;:::-;36911:2;36970:1;36967;36963:9;36955:17;;36832:146;;;;:::o;36984:96::-;37021:7;37050:24;37068:5;37050:24;:::i;:::-;37039:35;;37029:51;;;:::o;37086:90::-;37120:7;37163:5;37156:13;37149:21;37138:32;;37128:48;;;:::o;37182:149::-;37218:7;37258:66;37251:5;37247:78;37236:89;;37226:105;;;:::o;37337:126::-;37374:7;37414:42;37407:5;37403:54;37392:65;;37382:81;;;:::o;37469:77::-;37506:7;37535:5;37524:16;;37514:32;;;:::o;37552:154::-;37636:6;37631:3;37626;37613:30;37698:1;37689:6;37684:3;37680:16;37673:27;37603:103;;;:::o;37712:307::-;37780:1;37790:113;37804:6;37801:1;37798:13;37790:113;;;37889:1;37884:3;37880:11;37874:18;37870:1;37865:3;37861:11;37854:39;37826:2;37823:1;37819:10;37814:15;;37790:113;;;37921:6;37918:1;37915:13;37912:2;;;38001:1;37992:6;37987:3;37983:16;37976:27;37912:2;37761:258;;;;:::o;38025:320::-;38069:6;38106:1;38100:4;38096:12;38086:22;;38153:1;38147:4;38143:12;38174:18;38164:2;;38230:4;38222:6;38218:17;38208:27;;38164:2;38292;38284:6;38281:14;38261:18;38258:38;38255:2;;;38311:18;;:::i;:::-;38255:2;38076:269;;;;:::o;38351:281::-;38434:27;38456:4;38434:27;:::i;:::-;38426:6;38422:40;38564:6;38552:10;38549:22;38528:18;38516:10;38513:34;38510:62;38507:2;;;38575:18;;:::i;:::-;38507:2;38615:10;38611:2;38604:22;38394:238;;;:::o;38638:233::-;38677:3;38700:24;38718:5;38700:24;:::i;:::-;38691:33;;38746:66;38739:5;38736:77;38733:2;;;38816:18;;:::i;:::-;38733:2;38863:1;38856:5;38852:13;38845:20;;38681:190;;;:::o;38877:176::-;38909:1;38926:20;38944:1;38926:20;:::i;:::-;38921:25;;38960:20;38978:1;38960:20;:::i;:::-;38955:25;;38999:1;38989:2;;39004:18;;:::i;:::-;38989:2;39045:1;39042;39038:9;39033:14;;38911:142;;;;:::o;39059:180::-;39107:77;39104:1;39097:88;39204:4;39201:1;39194:15;39228:4;39225:1;39218:15;39245:180;39293:77;39290:1;39283:88;39390:4;39387:1;39380:15;39414:4;39411:1;39404:15;39431:180;39479:77;39476:1;39469:88;39576:4;39573:1;39566:15;39600:4;39597:1;39590:15;39617:180;39665:77;39662:1;39655:88;39762:4;39759:1;39752:15;39786:4;39783:1;39776:15;39803:183;39838:3;39876:1;39858:16;39855:23;39852:2;;;39914:1;39911;39908;39893:23;39936:34;39967:1;39961:8;39936:34;:::i;:::-;39929:41;;39852:2;39842:144;:::o;39992:102::-;40033:6;40084:2;40080:7;40075:2;40068:5;40064:14;40060:28;40050:38;;40040:54;;;:::o;40100:106::-;40144:8;40193:5;40188:3;40184:15;40163:36;;40153:53;;;:::o;40212:239::-;40352:34;40348:1;40340:6;40336:14;40329:58;40421:22;40416:2;40408:6;40404:15;40397:47;40318:133;:::o;40457:227::-;40597:34;40593:1;40585:6;40581:14;40574:58;40666:10;40661:2;40653:6;40649:15;40642:35;40563:121;:::o;40690:230::-;40830:34;40826:1;40818:6;40814:14;40807:58;40899:13;40894:2;40886:6;40882:15;40875:38;40796:124;:::o;40926:225::-;41066:34;41062:1;41054:6;41050:14;41043:58;41135:8;41130:2;41122:6;41118:15;41111:33;41032:119;:::o;41157:223::-;41297:34;41293:1;41285:6;41281:14;41274:58;41366:6;41361:2;41353:6;41349:15;41342:31;41263:117;:::o;41386:228::-;41526:34;41522:1;41514:6;41510:14;41503:58;41595:11;41590:2;41582:6;41578:15;41571:36;41492:122;:::o;41620:224::-;41760:34;41756:1;41748:6;41744:14;41737:58;41829:7;41824:2;41816:6;41812:15;41805:32;41726:118;:::o;41850:237::-;41990:34;41986:1;41978:6;41974:14;41967:58;42059:20;42054:2;42046:6;42042:15;42035:45;41956:131;:::o;42093:222::-;42233:34;42229:1;42221:6;42217:14;42210:58;42302:5;42297:2;42289:6;42285:15;42278:30;42199:116;:::o;42321:229::-;42461:34;42457:1;42449:6;42445:14;42438:58;42530:12;42525:2;42517:6;42513:15;42506:37;42427:123;:::o;42556:182::-;42696:34;42692:1;42684:6;42680:14;42673:58;42662:76;:::o;42744:171::-;42884:23;42880:1;42872:6;42868:14;42861:47;42850:65;:::o;42921:228::-;43061:34;43057:1;43049:6;43045:14;43038:58;43130:11;43125:2;43117:6;43113:15;43106:36;43027:122;:::o;43155:228::-;43295:34;43291:1;43283:6;43279:14;43272:58;43364:11;43359:2;43351:6;43347:15;43340:36;43261:122;:::o;43389:227::-;43529:34;43525:1;43517:6;43513:14;43506:58;43598:10;43593:2;43585:6;43581:15;43574:35;43495:121;:::o;43622:220::-;43762:34;43758:1;43750:6;43746:14;43739:58;43831:3;43826:2;43818:6;43814:15;43807:28;43728:114;:::o;43848:711::-;43887:3;43925:4;43907:16;43904:26;43901:2;;;43933:5;;43901:2;43962:20;;:::i;:::-;44037:1;44019:16;44015:24;44012:1;44006:4;43991:49;44070:4;44064:11;44169:16;44162:4;44154:6;44150:17;44147:39;44114:18;44106:6;44103:30;44087:113;44084:2;;;44215:5;;;;44084:2;44261:6;44255:4;44251:17;44297:3;44291:10;44324:18;44316:6;44313:30;44310:2;;;44346:5;;;;;;44310:2;44394:6;44387:4;44382:3;44378:14;44374:27;44453:1;44435:16;44431:24;44425:4;44421:35;44416:3;44413:44;44410:2;;;44460:5;;;;;;;44410:2;44477:57;44525:6;44519:4;44515:17;44507:6;44503:30;44497:4;44477:57;:::i;:::-;44550:3;44543:10;;43891:668;;;;;;;:::o;44565:122::-;44638:24;44656:5;44638:24;:::i;:::-;44631:5;44628:35;44618:2;;44677:1;44674;44667:12;44618:2;44608:79;:::o;44693:116::-;44763:21;44778:5;44763:21;:::i;:::-;44756:5;44753:32;44743:2;;44799:1;44796;44789:12;44743:2;44733:76;:::o;44815:120::-;44887:23;44904:5;44887:23;:::i;:::-;44880:5;44877:34;44867:2;;44925:1;44922;44915:12;44867:2;44857:78;:::o;44941:122::-;45014:24;45032:5;45014:24;:::i;:::-;45007:5;45004:35;44994:2;;45053:1;45050;45043:12;44994:2;44984:79;:::o

Swarm Source

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