ETH Price: $2,940.57 (-4.14%)
Gas: 1 Gwei

Token

 

Overview

Max Total Supply

101

Holders

92

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
pgm.eth
0xEdcE6a7105Cb3d298e356B416CaFd5CEA4a433Ff
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SibHoodies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : SibHoodies-Prod.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

//   .d8888b.  d8b 888      888 d8b                   888               888                \\
//  d88P  Y88b Y8P 888      888 Y8P                   888               888                \\
//  Y88b.          888      888                       888               888                \\
//   "Y888b.   888 88888b.  888 888 88888b.   .d88b.  888       8888b.  88888b.  .d8888b   \\
//      "Y88b. 888 888 "88b 888 888 888 "88b d88P"88b 888          "88b 888 "88b 88K       \\
//        "888 888 888  888 888 888 888  888 888  888 888      .d888888 888  888 "Y8888b.  \\
//  Y88b  d88P 888 888 d88P 888 888 888  888 Y88b 888 888      888  888 888 d88P      X88  \\
//   "Y8888P"  888 88888P"  888 888 888  888  "Y88888 88888888 "Y888888 88888P"   88888P'  \\
//                                                888                                      \\
//                                           Y8b d88P                                      \\
//                                            "Y88P"                                       \\

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";

import "https://github.com/NFTSiblings/Modules/blob/master/AdminPrivileges.sol";
import "https://github.com/NFTSiblings/Modules/blob/master/RoyaltiesConfig.sol";
import "https://github.com/NFTSiblings/Modules/blob/master/Allowlist.sol";
import "https://github.com/NFTSiblings/Modules/blob/master/AdminPause.sol";

interface IERC20 {
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
}

/// @author Sibling Labs
contract SibHoodies is ERC1155, AdminPrivileges, RoyaltiesConfig, Allowlist, AdminPause {
    address constant public ASH_ADDRESS = 0x64D91f12Ece7362F91A6f8E7940Cd55F05060b92;
    address private payoutAddress;

    uint256 public ASH_PRICE = 15 * 10 ** 18; // 15 ASH
    uint256 public ASH_PRICE_AL = 5 * 10 ** 18; // 5 ASH
    uint256 public ETH_PRICE = 0.03 ether;
    uint256 public ETH_PRICE_AL = 0.01 ether;
    uint256 public totalMints;
    uint8 constant public MAX_SUPPLY = 100;

    mapping(uint256 => string) private uris;
    mapping(address => uint8) public mintClaimed;

    bool public tokenRedeemable = true;
    bool public alRequired = true;
    bool public tokenLocked;
    bool public saleActive;

    constructor() ERC1155("") {
        payoutAddress = msg.sender;
    }

    // PUBLIC FUNCTIONS //

    /// @notice Mint a token
    /// @param ashPayment Determines whether payment will be made in ASH (ERC-20) or ETH
    function mint(bool ashPayment) public payable whenNotPaused {
        require(saleActive, "Mint is not available now");
        require(totalMints < MAX_SUPPLY, "All tokens have been minted");
        require(mintClaimed[msg.sender] == 0, "You have already minted");

        uint256 eth_price = ETH_PRICE;
        uint256 ash_price = ASH_PRICE;

        if (alRequired) {
            require(allowlist[msg.sender] > 0, "You must be on the allowlist to mint now");
            eth_price = ETH_PRICE_AL;
            ash_price = ASH_PRICE_AL;
        }

        if (ashPayment) {
            require(
                IERC20(ASH_ADDRESS).transferFrom(msg.sender, payoutAddress, ash_price),
                "Ash Payment failed - check if this contract is approved"
            );
        } else {
            require(msg.value == eth_price, "Incorrect amount of Ether sent");
        }

        mintClaimed[msg.sender]++;
        _mint(msg.sender, 1, 1, "");
    }

    /// @notice Redeem a token for a physical hoodie - use https://anniversary.clothing/
    /// @param amount The amount of tokens to redeem
    function redeem(uint256 amount) public whenNotPaused {
        require(tokenRedeemable, "Merch redemption is not available now");
        require(amount > 0, "Cannot redeem less than one");
        _burn(msg.sender, 1, amount);
        _mint(msg.sender, 2, amount, "");
    }

    /// @notice Indicates whether a given token is transferrable
    /// @param tokenId The token ID to check
    /// @return Boolean indicating whether the provided token ID is transferrable
    function isTokenLocked(uint8 tokenId) public view returns (bool) {
        return tokenId == 1 && !tokenLocked ? false : true;
    }

    // ADMIN FUNCTIONS //

    function airdrop(address[] calldata to, uint8 tokenId) public onlyAdmins {
        require(tokenId == 1 || tokenId == 2);
        for (uint256 i; i < to.length; i++) {
            _mint(to[i], tokenId, 1, "");
        }
    }

    function setPrices(uint256[4] calldata prices) public onlyAdmins {
        ASH_PRICE = prices[0];
        ASH_PRICE_AL = prices[1];
        ETH_PRICE = prices[2];
        ETH_PRICE_AL = prices[3];
    }

    function setPayoutAddress(address _addr) public onlyAdmins {
        payoutAddress = _addr;
    }

    function setSaleActive(bool active) public onlyAdmins {
        saleActive = active;
    }

    function setAlRequirement(bool required) public onlyAdmins {
        alRequired = required;
    }

    function setTokenRedeemable(bool redeemable) public onlyAdmins {
        tokenRedeemable = redeemable;
    }

    function setTokenLock(bool locked) public onlyAdmins {
        tokenLocked = locked;
    }

    function setURI(uint8 tokenId, string memory _uri) public onlyAdmins {
        uris[tokenId] = _uri;
    }

    function withdraw() public onlyAdmins {
        payable(owner).transfer(address(this).balance);
    }

    // METADATA & MISC FUNCTIONS //

    /// @notice Indicates which 'phase' the contract is considered to be in
    /// @return Phase of contract, as an integer
    function phase() public view returns (uint256) {
        if(tokenLocked) {
            return tokenRedeemable ? 2 : 3;
        } else {
            return tokenRedeemable ? 1 : 4;
        }
    }

    /// @notice See {IERC165-supportsInterface}
    function supportsInterface(bytes4 interfaceId)
    public
    view
    override(RoyaltiesConfig, ERC1155)
    returns (bool)
    {
        return RoyaltiesConfig.supportsInterface(interfaceId) || ERC1155.supportsInterface(interfaceId);
    }

    function uri(uint256 tokenId) public view override returns (string memory) {
        return uris[tokenId];
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
    internal
    override(ERC1155)
    whenNotPaused
    {
        if (from != address(0) && to != address(0)) {
            require(!tokenLocked, "This token may not be transferred now");
            for (uint256 i; i < ids.length; i++) {
                require(ids[i] == 1, "This token may not be transferred");
            }
        }

        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function _mint(address to, uint256 id, uint256 amount, bytes memory data) internal override {
        if (id == 1) {
            totalMints += amount;
        }
        super._mint(to, id, amount, data);
    }
}

File 2 of 13 : AdminPause.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "https://github.com/NFTSiblings/Modules/blob/master/AdminPrivileges.sol";

/**
* @dev Contract which adds pausing functionality. Any function
* which uses the {whenNotPaused} modifier will revert when the
* contract is paused.
*
* Use {togglePause} to switch the paused state.
*
* Contract admins can run any function on a contract regardless
* of whether it is paused.
*
* See more module contracts from Sibling Labs at
* https://github.com/NFTSiblings/Modules
 */
contract AdminPause is AdminPrivileges {
    /**
     * @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 public 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 || isAdmin(msg.sender), "AdminPausable: contract is paused");
        _;
    }

    /**
    * @dev Toggle paused state.
    */
    function togglePause() public onlyAdmins {
        paused = !paused;
        if (paused) {
            emit Paused(msg.sender);
        } else {
            emit Unpaused(msg.sender);
        }
    }
}

File 3 of 13 : Allowlist.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "https://github.com/NFTSiblings/Modules/blob/master/AdminPrivileges.sol";

/**
* @dev Adds allowlist functionality to a contract.
*
* Allowlist is tracked with a mapping which pairs an
* address to a uint - this provides versatile
* functionality to your base contract.
*
* If your allowlist is binary (e.g. an address is
* either allowed or not), simply check if the
* paired uint for the address is greater than 0.
* Alternatively, track how many allowlist places
* each address is entitled to with the uint.
*
* Use the {requireAllowlist} modifier to prevent
* a function from being run if the caller does
* not have at least 1 allowlist place.
*
* See more module contracts from Sibling Labs at
* https://github.com/NFTSiblings/Modules
*/
contract Allowlist is AdminPrivileges {
    mapping(address => uint) public allowlist;

    /**
    * @dev Adds one to the number of allowlist places
    * for each provided address.
    */
    function addToAllowlist(address[] calldata _addr) public onlyAdmins {
        for (uint i; i < _addr.length; i++) {
            allowlist[_addr[i]]++;
        }
    }

    /**
    * @dev Sets the number of allowlist places for
    * given addresses.
    */
    function setAllowlist(address[] calldata _addr, uint amount) public onlyAdmins {
        for (uint i; i < _addr.length; i++) {
            allowlist[_addr[i]] = amount;
        }
    }

    /**
    * @dev Removes all allowlist places for given
    * addresses - they will no longer be allowed.
    */
    function removeFromAllowList(address[] calldata _addr) public onlyAdmins {
        for (uint i; i < _addr.length; i++) {
            allowlist[_addr[i]] = 0;
        }
    }

    /**
    * @dev Add this modifier to a function to require
    * that the msg.sender is on the allowlist.
    */
    modifier requireAllowlist() {
        require(allowlist[msg.sender] > 0, "Allowlist: caller is not on the allowlist");
        _;
    }
}

File 4 of 13 : RoyaltiesConfig.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "https://github.com/NFTSiblings/Modules/blob/master/AdminPrivileges.sol";

/**
* @dev Contract which adds support for Rarible and EIP2981 NFT
* royalty standards.
*
* Royalty recipient is set to the contract deployer by default,
* and royalty percentage is set to 10% by default.
* 
* Admins can use the {updateRoyalties} function to change the
* royalties percentage or royalty recipient.
*
* Rarible and LooksRare (LooksRare uses the EIP2981 NFT
* royalty standard) are the only marketplaces which this
* contract module will add support for. We recommend updating
* royalty settings for other marketplaces on their
* respective websites.
*
* See more module contracts from Sibling Labs at
* https://github.com/NFTSiblings/Modules
 */
contract RoyaltiesConfig is AdminPrivileges {
    uint256 private _royaltyBps;
    address payable private _royaltyRecipient;
    bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;
    bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

    constructor() {
        _royaltyRecipient = payable(msg.sender);
        _royaltyBps = 1000;
    }

    /**
     * @dev See {IERC165-supportsInterface}. Override this function
     * in your base contract. See line 74.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE;
    }

    /**
    * @dev Set royalty recipient and basis points.
     */
    function updateRoyalties(address payable recipient, uint256 bps) external virtual onlyAdmins {
        _royaltyRecipient = recipient;
        _royaltyBps = bps;
    }

    // RARIBLE ROYALTIES FUNCTIONS //

    function getFeeRecipients(uint256) external virtual view returns (address payable[] memory recipients) {
        if (_royaltyRecipient != address(0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
        }
        return recipients;
    }

    function getFeeBps(uint256) external virtual view returns (uint[] memory bps) {
        if (_royaltyRecipient != address(0)) {
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return bps;
    }

    // EIP2981 ROYALTY STANDARD FUNCTION //

    function royaltyInfo(uint256, uint256 value) external virtual view returns (address, uint256) {
        return (_royaltyRecipient, value*_royaltyBps/10000);
    }
}

/**
* For this contract module to work correctly, you must override {supportsInterface}
* in your base contract and return this contract's {supportsInterface} function.
*
* Example:
*
* function supportsInterface(bytes4 interfaceId) public view override(RoyaltiesConfig, ERC1155) returns (bool) {
*     return RoyaltiesConfig.supportsInterface(interfaceId) || ERC1155.supportsInterface(interfaceId);
* }
 */

File 5 of 13 : AdminPrivileges.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Contract module that designates an owner and admins
 * for a smart contract.
 *
 * Inheriting from `AdminPrivileges` will make the
 * {onlyAdmins} modifier available, which can be applied to
 * functions to restrict all wallets except for the stored
 * owner and admin addresses.
 *
* See more module contracts from Sibling Labs at
* https://github.com/NFTSiblings/Modules
 */
contract AdminPrivileges {
    address public owner;

    mapping(address => bool) private admins;

    constructor() {
        owner = msg.sender;
    }

    /**
    * @dev Returns true if provided address has admin status
    * or is the contract owner.
    */
    function isAdmin(address _addr) public view returns (bool) {
        return owner == _addr || admins[_addr];
    }

    /**
    * @dev Prevents a function from being called by anyone
    * but the contract owner or approved admins.
    */
    modifier onlyAdmins() {
        require(isAdmin(msg.sender), "AdminPrivileges: caller is not an admin");
        _;
    }

    /**
    * @dev Toggles admin status of provided addresses.
    */
    function toggleAdmins(address[] calldata accounts) external onlyAdmins {
        for (uint i; i < accounts.length; i++) {
            if (admins[accounts[i]]) {
                delete admins[accounts[i]];
            } else {
                admins[accounts[i]] = true;
            }
        }
    }

    /**
    * @dev Transfers ownership role to a different address.
    */
    function transferOwnership(address newOwner) public {
        require(msg.sender == owner, "Only contract owner can transfer ownership");
        owner = newOwner;
    }
}

File 6 of 13 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/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);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, 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);

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

        _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);

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

        _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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

        _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);

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

        _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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

        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);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        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 7 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 8 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 11 of 13 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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.
     *
     * NOTE: 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.
     *
     * NOTE: 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 12 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ASH_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ASH_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ASH_PRICE_AL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETH_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETH_PRICE_AL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"}],"name":"addToAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint8","name":"tokenId","type":"uint8"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"alRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint8","name":"tokenId","type":"uint8"}],"name":"isTokenLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"ashPayment","type":"bool"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintClaimed","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"required","type":"bool"}],"name":"setAlRequirement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setAllowlist","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":"address","name":"_addr","type":"address"}],"name":"setPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[4]","name":"prices","type":"uint256[4]"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"locked","type":"bool"}],"name":"setTokenLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"redeemable","type":"bool"}],"name":"setTokenRedeemable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"tokenId","type":"uint8"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","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":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"toggleAdmins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenRedeemable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267d02ab486cedc0000600955674563918244f40000600a55666a94d74f430000600b55662386f26fc10000600c556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055503480156200007557600080fd5b506040518060200160405280600081525062000097816200016a60201b60201c565b5033600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103e860058190555033600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200029b565b80600290805190602001906200018292919062000186565b5050565b828054620001949062000236565b90600052602060002090601f016020900481019282620001b8576000855562000204565b82601f10620001d357805160ff191683800117855562000204565b8280016001018555821562000204579182015b8281111562000203578251825591602001919060010190620001e6565b5b50905062000213919062000217565b5090565b5b808211156200023257600081600090555060010162000218565b5090565b600060028204905060018216806200024f57607f821691505b602082108114156200026657620002656200026c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615b2080620002ab6000396000f3fe6080604052600436106102875760003560e01c806360dfb2581161015a578063b1c9fe6e116100c1578063db006a751161007a578063db006a75146109e1578063e7f7d15d14610a0a578063e985e9c514610a35578063f242432a14610a72578063f2fde38b14610a9b578063f9c3e62a14610ac457610287565b8063b1c9fe6e146108d1578063b8a1ec31146108fc578063b9c4d9fb14610927578063c4ae316814610964578063c643a0231461097b578063ceceafc0146109b857610287565b80638832bc29116101135780638832bc29146107c15780638da5cb5b146107ec5780639390bc1c14610817578063a22cb46514610842578063a51312c81461086b578063a7cd52cb1461089457610287565b806360dfb258146106c757806368428a1b146106f05780636a6305591461071b5780636c2f5acd14610746578063841718a61461076f57806387090e171461079857610287565b8063216b9926116101fe57806333ea51a8116101b757806333ea51a8146105cd5780633ccfd60b146105f65780634e1273f41461060d5780635207c2731461064a578063548346a1146106735780635c975abb1461069c57610287565b8063216b9926146104aa57806324d7806c146104d35780632a55205a146105105780632eb2c2d61461054e57806330bd36f71461057757806332cb6b0c146105a257610287565b80630ebd4c7f116102505780630ebd4c7f146103975780630ec50353146103d457806311fecb4e146103fd5780631237e5e81461042657806318c41a80146104635780631f21bfbf1461047f57610287565b8062fdd58e1461028c57806301ffc9a7146102c957806302e48fab14610306578063045144cf146103315780630e89341c1461035a575b600080fd5b34801561029857600080fd5b506102b360048036038101906102ae9190613eae565b610aef565b6040516102c09190614cc5565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906140fa565b610bb8565b6040516102fd9190614948565b60405180910390f35b34801561031257600080fd5b5061031b610bda565b6040516103289190614948565b60405180910390f35b34801561033d57600080fd5b50610358600480360381019061035391906140a0565b610bed565b005b34801561036657600080fd5b50610381600480360381019061037c9190614154565b610c52565b60405161038e9190614963565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190614154565b610cf7565b6040516103cb91906148ef565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906140a0565b610dc4565b005b34801561040957600080fd5b50610424600480360381019061041f9190613f9b565b610e29565b005b34801561043257600080fd5b5061044d60048036038101906104489190613c5b565b610efc565b60405161045a9190614d09565b60405180910390f35b61047d600480360381019061047891906140a0565b610f1c565b005b34801561048b57600080fd5b5061049461133d565b6040516104a19190614cc5565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613f3b565b611343565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613c5b565b61141d565b6040516105079190614948565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190614181565b6114cb565b6040516105459291906148a4565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190613d08565b611517565b005b34801561058357600080fd5b5061058c6115b8565b6040516105999190614790565b60405180910390f35b3480156105ae57600080fd5b506105b76115d0565b6040516105c49190614d09565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef9190613c5b565b6115d5565b005b34801561060257600080fd5b5061060b611661565b005b34801561061957600080fd5b50610634600480360381019061062f9190613ffb565b611714565b60405161064191906148ef565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190613eee565b61182d565b005b34801561067f57600080fd5b5061069a60048036038101906106959190614073565b611917565b005b3480156106a857600080fd5b506106b16119de565b6040516106be9190614948565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e991906141ee565b6119f1565b005b3480156106fc57600080fd5b50610705611a68565b6040516107129190614948565b60405180910390f35b34801561072757600080fd5b50610730611a7b565b60405161073d9190614948565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613c88565b611a8e565b005b34801561077b57600080fd5b50610796600480360381019061079191906140a0565b611b22565b005b3480156107a457600080fd5b506107bf60048036038101906107ba9190613eee565b611b87565b005b3480156107cd57600080fd5b506107d6611d69565b6040516107e39190614cc5565b60405180910390f35b3480156107f857600080fd5b50610801611d6f565b60405161080e9190614790565b60405180910390f35b34801561082357600080fd5b5061082c611d95565b6040516108399190614cc5565b60405180910390f35b34801561084e57600080fd5b5061086960048036038101906108649190613e6e565b611d9b565b005b34801561087757600080fd5b50610892600480360381019061088d9190613eee565b611db1565b005b3480156108a057600080fd5b506108bb60048036038101906108b69190613c5b565b611e8b565b6040516108c89190614cc5565b60405180910390f35b3480156108dd57600080fd5b506108e6611ea3565b6040516108f39190614cc5565b60405180910390f35b34801561090857600080fd5b50610911611f09565b60405161091e9190614cc5565b60405180910390f35b34801561093357600080fd5b5061094e60048036038101906109499190614154565b611f0f565b60405161095b91906148cd565b60405180910390f35b34801561097057600080fd5b5061097961202a565b005b34801561098757600080fd5b506109a2600480360381019061099d91906141c1565b612127565b6040516109af9190614948565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da91906140a0565b61215e565b005b3480156109ed57600080fd5b50610a086004803603810190610a039190614154565b6121c3565b005b348015610a1657600080fd5b50610a1f6122e0565b604051610a2c9190614cc5565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190613cc8565b6122e6565b604051610a699190614948565b60405180910390f35b348015610a7e57600080fd5b50610a996004803603810190610a949190613dd7565b61237a565b005b348015610aa757600080fd5b50610ac26004803603810190610abd9190613c5b565b61241b565b005b348015610ad057600080fd5b50610ad96124ef565b604051610ae69190614948565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b57906149e5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610bc382612502565b80610bd35750610bd2826125a2565b5b9050919050565b601060009054906101000a900460ff1681565b610bf63361141d565b610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90614a25565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600e60008381526020019081526020016000208054610c7290615063565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9e90615063565b8015610ceb5780601f10610cc057610100808354040283529160200191610ceb565b820191906000526020600020905b815481529060010190602001808311610cce57829003601f168201915b50505050509050919050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dbf57600167ffffffffffffffff811115610d6a57610d696151f5565b5b604051908082528060200260200182016040528015610d985781602001602082028036833780820191505090505b50905060055481600081518110610db257610db16151c6565b5b6020026020010181815250505b919050565b610dcd3361141d565b610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390614a25565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b610e323361141d565b610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890614a25565b60405180910390fd5b60018160ff161480610e86575060028160ff16145b610e8f57600080fd5b60005b83839050811015610ef657610ee3848483818110610eb357610eb26151c6565b5b9050602002016020810190610ec89190613c5b565b8360ff16600160405180602001604052806000815250612684565b8080610eee906150c6565b915050610e92565b50505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600860009054906101000a900460ff161580610f3d5750610f3c3361141d565b5b610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390614b05565b60405180910390fd5b601060039054906101000a900460ff16610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290614b25565b60405180910390fd5b606460ff16600d5410611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90614ca5565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90614a65565b60405180910390fd5b6000600b54905060006009549050601060019054906101000a900460ff1615611155576000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190614bc5565b60405180910390fd5b600c549150600a5490505b8215611264577364d91f12ece7362f91a6f8e7940cd55f05060b9273ffffffffffffffffffffffffffffffffffffffff166323b872dd33600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b81526004016111ce93929190614813565b602060405180830381600087803b1580156111e857600080fd5b505af11580156111fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122091906140cd565b61125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690614b85565b60405180910390fd5b6112a7565b8134146112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90614a45565b60405180910390fd5b5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081819054906101000a900460ff16809291906113039061510f565b91906101000a81548160ff021916908360ff160217905550506113383360018060405180602001604052806000815250612684565b505050565b600d5481565b61134c3361141d565b61138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290614a25565b60405180910390fd5b60005b838390508110156114175781600760008686858181106113b1576113b06151c6565b5b90506020020160208101906113c69190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061140f906150c6565b91505061138e565b50505050565b60008173ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806114c45750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b9050919050565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600554856115029190614f34565b61150c9190614f03565b915091509250929050565b61151f6126b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061156557506115648561155f6126b9565b6122e6565b5b6115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614ae5565b60405180910390fd5b6115b185858585856126c1565b5050505050565b7364d91f12ece7362f91a6f8e7940cd55f05060b9281565b606481565b6115de3361141d565b61161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490614a25565b60405180910390fd5b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61166a3361141d565b6116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090614a25565b60405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611711573d6000803e3d6000fd5b50565b6060815183511461175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190614c05565b60405180910390fd5b6000835167ffffffffffffffff811115611777576117766151f5565b5b6040519080825280602002602001820160405280156117a55781602001602082028036833780820191505090505b50905060005b8451811015611822576117f28582815181106117ca576117c96151c6565b5b60200260200101518583815181106117e5576117e46151c6565b5b6020026020010151610aef565b828281518110611805576118046151c6565b5b6020026020010181815250508061181b906150c6565b90506117ab565b508091505092915050565b6118363361141d565b611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90614a25565b60405180910390fd5b60005b82829050811015611912576007600084848481811061189a576118996151c6565b5b90506020020160208101906118af9190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906118fa906150c6565b9190505550808061190a906150c6565b915050611878565b505050565b6119203361141d565b61195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690614a25565b60405180910390fd5b80600060048110611973576119726151c6565b5b602002013560098190555080600160048110611992576119916151c6565b5b6020020135600a81905550806002600481106119b1576119b06151c6565b5b6020020135600b81905550806003600481106119d0576119cf6151c6565b5b6020020135600c8190555050565b600860009054906101000a900460ff1681565b6119fa3361141d565b611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3090614a25565b60405180910390fd5b80600e60008460ff1681526020019081526020016000209080519060200190611a6392919061387c565b505050565b601060039054906101000a900460ff1681565b601060029054906101000a900460ff1681565b611a973361141d565b611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd90614a25565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806005819055505050565b611b2b3361141d565b611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614a25565b60405180910390fd5b80601060036101000a81548160ff02191690831515021790555050565b611b903361141d565b611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690614a25565b60405180910390fd5b60005b82829050811015611d645760046000848484818110611bf457611bf36151c6565b5b9050602002016020810190611c099190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cd15760046000848484818110611c6d57611c6c6151c6565b5b9050602002016020810190611c829190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff0219169055611d51565b600160046000858585818110611cea57611ce96151c6565b5b9050602002016020810190611cff9190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8080611d5c906150c6565b915050611bd2565b505050565b600b5481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b611dad611da66126b9565b83836129e3565b5050565b611dba3361141d565b611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090614a25565b60405180910390fd5b60005b82829050811015611e8657600060076000858585818110611e2057611e1f6151c6565b5b9050602002016020810190611e359190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611e7e906150c6565b915050611dfc565b505050565b60076020528060005260406000206000915090505481565b6000601060029054906101000a900460ff1615611ee257601060009054906101000a900460ff16611ed5576003611ed8565b60025b60ff169050611f06565b601060009054906101000a900460ff16611efd576004611f00565b60015b60ff1690505b90565b600a5481565b6060600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461202557600167ffffffffffffffff811115611f8257611f816151f5565b5b604051908082528060200260200182016040528015611fb05781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110611fea57611fe96151c6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b6120333361141d565b612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990614a25565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550600860009054906101000a900460ff16156120ed577f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258336040516120e09190614790565b60405180910390a1612125565b7f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa3360405161211c9190614790565b60405180910390a15b565b600060018260ff161480156121495750601060029054906101000a900460ff16155b612154576001612157565b60005b9050919050565b6121673361141d565b6121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d90614a25565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b600860009054906101000a900460ff1615806121e457506121e33361141d565b5b612223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221a90614b05565b60405180910390fd5b601060009054906101000a900460ff16612272576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612269906149a5565b60405180910390fd5b600081116122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ac90614c25565b60405180910390fd5b6122c133600183612b50565b6122dd3360028360405180602001604052806000815250612684565b50565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123826126b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806123c857506123c7856123c26126b9565b6122e6565b5b612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe90614a85565b60405180910390fd5b6124148585858585612d97565b5050505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a290614aa5565b60405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601060019054906101000a900460ff1681565b6000632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061259b575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061266d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061267d575061267c82613033565b5b9050919050565b60018314156126a75781600d600082825461269f9190614ead565b925050819055505b6126b38484848461309d565b50505050565b600033905090565b8151835114612705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fc90614c65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276c90614ac5565b60405180910390fd5b600061277f6126b9565b905061278f81878787878761324e565b60005b84518110156129405760008582815181106127b0576127af6151c6565b5b6020026020010151905060008583815181106127cf576127ce6151c6565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790614b65565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129259190614ead565b9250508190555050505080612939906150c6565b9050612792565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516129b7929190614911565b60405180910390a46129cd818787878787613401565b6129db818787878787613409565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990614be5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b439190614948565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb790614b45565b60405180910390fd5b6000612bca6126b9565b90506000612bd7846135f0565b90506000612be4846135f0565b9050612c048387600085856040518060200160405280600081525061324e565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015612c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9290614a05565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612d68929190614ce0565b60405180910390a4612d8e84886000868660405180602001604052806000815250613401565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfe90614ac5565b60405180910390fd5b6000612e116126b9565b90506000612e1e856135f0565b90506000612e2b856135f0565b9050612e3b83898985858961324e565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec990614b65565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f879190614ead565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051613004929190614ce0565b60405180910390a461301a848a8a86868a613401565b613028848a8a8a8a8a61366a565b505050505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561310d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310490614c85565b60405180910390fd5b60006131176126b9565b90506000613124856135f0565b90506000613131856135f0565b90506131428360008985858961324e565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131a19190614ead565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161321f929190614ce0565b60405180910390a461323683600089858589613401565b6132458360008989898961366a565b50505050505050565b600860009054906101000a900460ff16158061326f575061326e3361141d565b5b6132ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a590614b05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156133185750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156133eb57601060029054906101000a900460ff161561336d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336490614c45565b60405180910390fd5b60005b83518110156133e957600184828151811061338e5761338d6151c6565b5b6020026020010151146133d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cd90614ba5565b60405180910390fd5b80806133e1906150c6565b915050613370565b505b6133f9868686868686613851565b505050505050565b505050505050565b6134288473ffffffffffffffffffffffffffffffffffffffff16613859565b156135e8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161346e9594939291906147ab565b602060405180830381600087803b15801561348857600080fd5b505af19250505080156134b957506040513d601f19601f820116820180604052508101906134b69190614127565b60015b61355f576134c5615224565b806308c379a0141561352257506134da6159ca565b806134e55750613524565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135199190614963565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355690614985565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146135e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135dd906149c5565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561360f5761360e6151f5565b5b60405190808252806020026020018201604052801561363d5781602001602082028036833780820191505090505b5090508281600081518110613655576136546151c6565b5b60200260200101818152505080915050919050565b6136898473ffffffffffffffffffffffffffffffffffffffff16613859565b15613849578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016136cf95949392919061484a565b602060405180830381600087803b1580156136e957600080fd5b505af192505050801561371a57506040513d601f19601f820116820180604052508101906137179190614127565b60015b6137c057613726615224565b806308c379a01415613783575061373b6159ca565b806137465750613785565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377a9190614963565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b790614985565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383e906149c5565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461388890615063565b90600052602060002090601f0160209004810192826138aa57600085556138f1565b82601f106138c357805160ff19168380011785556138f1565b828001600101855582156138f1579182015b828111156138f05782518255916020019190600101906138d5565b5b5090506138fe9190613902565b5090565b5b8082111561391b576000816000905550600101613903565b5090565b600061393261392d84614d49565b614d24565b9050808382526020820190508285602086028201111561395557613954615250565b5b60005b85811015613985578161396b8882613a83565b845260208401935060208301925050600181019050613958565b5050509392505050565b60006139a261399d84614d75565b614d24565b905080838252602082019050828560208602820111156139c5576139c4615250565b5b60005b858110156139f557816139db8882613c31565b8452602084019350602083019250506001810190506139c8565b5050509392505050565b6000613a12613a0d84614da1565b614d24565b905082815260208101848484011115613a2e57613a2d615255565b5b613a39848285615021565b509392505050565b6000613a54613a4f84614dd2565b614d24565b905082815260208101848484011115613a7057613a6f615255565b5b613a7b848285615021565b509392505050565b600081359050613a9281615a60565b92915050565b600081359050613aa781615a77565b92915050565b60008083601f840112613ac357613ac261524b565b5b8235905067ffffffffffffffff811115613ae057613adf615246565b5b602083019150836020820283011115613afc57613afb615250565b5b9250929050565b600082601f830112613b1857613b1761524b565b5b8135613b2884826020860161391f565b91505092915050565b600081905082602060040282011115613b4d57613b4c615250565b5b92915050565b600082601f830112613b6857613b6761524b565b5b8135613b7884826020860161398f565b91505092915050565b600081359050613b9081615a8e565b92915050565b600081519050613ba581615a8e565b92915050565b600081359050613bba81615aa5565b92915050565b600081519050613bcf81615aa5565b92915050565b600082601f830112613bea57613be961524b565b5b8135613bfa8482602086016139ff565b91505092915050565b600082601f830112613c1857613c1761524b565b5b8135613c28848260208601613a41565b91505092915050565b600081359050613c4081615abc565b92915050565b600081359050613c5581615ad3565b92915050565b600060208284031215613c7157613c7061525f565b5b6000613c7f84828501613a83565b91505092915050565b60008060408385031215613c9f57613c9e61525f565b5b6000613cad85828601613a98565b9250506020613cbe85828601613c31565b9150509250929050565b60008060408385031215613cdf57613cde61525f565b5b6000613ced85828601613a83565b9250506020613cfe85828601613a83565b9150509250929050565b600080600080600060a08688031215613d2457613d2361525f565b5b6000613d3288828901613a83565b9550506020613d4388828901613a83565b945050604086013567ffffffffffffffff811115613d6457613d6361525a565b5b613d7088828901613b53565b935050606086013567ffffffffffffffff811115613d9157613d9061525a565b5b613d9d88828901613b53565b925050608086013567ffffffffffffffff811115613dbe57613dbd61525a565b5b613dca88828901613bd5565b9150509295509295909350565b600080600080600060a08688031215613df357613df261525f565b5b6000613e0188828901613a83565b9550506020613e1288828901613a83565b9450506040613e2388828901613c31565b9350506060613e3488828901613c31565b925050608086013567ffffffffffffffff811115613e5557613e5461525a565b5b613e6188828901613bd5565b9150509295509295909350565b60008060408385031215613e8557613e8461525f565b5b6000613e9385828601613a83565b9250506020613ea485828601613b81565b9150509250929050565b60008060408385031215613ec557613ec461525f565b5b6000613ed385828601613a83565b9250506020613ee485828601613c31565b9150509250929050565b60008060208385031215613f0557613f0461525f565b5b600083013567ffffffffffffffff811115613f2357613f2261525a565b5b613f2f85828601613aad565b92509250509250929050565b600080600060408486031215613f5457613f5361525f565b5b600084013567ffffffffffffffff811115613f7257613f7161525a565b5b613f7e86828701613aad565b93509350506020613f9186828701613c31565b9150509250925092565b600080600060408486031215613fb457613fb361525f565b5b600084013567ffffffffffffffff811115613fd257613fd161525a565b5b613fde86828701613aad565b93509350506020613ff186828701613c46565b9150509250925092565b600080604083850312156140125761401161525f565b5b600083013567ffffffffffffffff8111156140305761402f61525a565b5b61403c85828601613b03565b925050602083013567ffffffffffffffff81111561405d5761405c61525a565b5b61406985828601613b53565b9150509250929050565b6000608082840312156140895761408861525f565b5b600061409784828501613b31565b91505092915050565b6000602082840312156140b6576140b561525f565b5b60006140c484828501613b81565b91505092915050565b6000602082840312156140e3576140e261525f565b5b60006140f184828501613b96565b91505092915050565b6000602082840312156141105761410f61525f565b5b600061411e84828501613bab565b91505092915050565b60006020828403121561413d5761413c61525f565b5b600061414b84828501613bc0565b91505092915050565b60006020828403121561416a5761416961525f565b5b600061417884828501613c31565b91505092915050565b600080604083850312156141985761419761525f565b5b60006141a685828601613c31565b92505060206141b785828601613c31565b9150509250929050565b6000602082840312156141d7576141d661525f565b5b60006141e584828501613c46565b91505092915050565b600080604083850312156142055761420461525f565b5b600061421385828601613c46565b925050602083013567ffffffffffffffff8111156142345761423361525a565b5b61424085828601613c03565b9150509250929050565b6000614256838361427a565b60208301905092915050565b600061426e8383614763565b60208301905092915050565b61428381614fa0565b82525050565b61429281614f8e565b82525050565b60006142a382614e23565b6142ad8185614e69565b93506142b883614e03565b8060005b838110156142e95781516142d0888261424a565b97506142db83614e4f565b9250506001810190506142bc565b5085935050505092915050565b600061430182614e2e565b61430b8185614e7a565b935061431683614e13565b8060005b8381101561434757815161432e8882614262565b975061433983614e5c565b92505060018101905061431a565b5085935050505092915050565b61435d81614fb2565b82525050565b600061436e82614e39565b6143788185614e8b565b9350614388818560208601615030565b61439181615264565b840191505092915050565b60006143a782614e44565b6143b18185614e9c565b93506143c1818560208601615030565b6143ca81615264565b840191505092915050565b60006143e2603483614e9c565b91506143ed82615282565b604082019050919050565b6000614405602583614e9c565b9150614410826152d1565b604082019050919050565b6000614428602883614e9c565b915061443382615320565b604082019050919050565b600061444b602b83614e9c565b91506144568261536f565b604082019050919050565b600061446e602483614e9c565b9150614479826153be565b604082019050919050565b6000614491602783614e9c565b915061449c8261540d565b604082019050919050565b60006144b4601e83614e9c565b91506144bf8261545c565b602082019050919050565b60006144d7601783614e9c565b91506144e282615485565b602082019050919050565b60006144fa602983614e9c565b9150614505826154ae565b604082019050919050565b600061451d602a83614e9c565b9150614528826154fd565b604082019050919050565b6000614540602583614e9c565b915061454b8261554c565b604082019050919050565b6000614563603283614e9c565b915061456e8261559b565b604082019050919050565b6000614586602183614e9c565b9150614591826155ea565b604082019050919050565b60006145a9601983614e9c565b91506145b482615639565b602082019050919050565b60006145cc602383614e9c565b91506145d782615662565b604082019050919050565b60006145ef602a83614e9c565b91506145fa826156b1565b604082019050919050565b6000614612603783614e9c565b915061461d82615700565b604082019050919050565b6000614635602183614e9c565b91506146408261574f565b604082019050919050565b6000614658602883614e9c565b91506146638261579e565b604082019050919050565b600061467b602983614e9c565b9150614686826157ed565b604082019050919050565b600061469e602983614e9c565b91506146a98261583c565b604082019050919050565b60006146c1601b83614e9c565b91506146cc8261588b565b602082019050919050565b60006146e4602583614e9c565b91506146ef826158b4565b604082019050919050565b6000614707602883614e9c565b915061471282615903565b604082019050919050565b600061472a602183614e9c565b915061473582615952565b604082019050919050565b600061474d601b83614e9c565b9150614758826159a1565b602082019050919050565b61476c8161500a565b82525050565b61477b8161500a565b82525050565b61478a81615014565b82525050565b60006020820190506147a56000830184614289565b92915050565b600060a0820190506147c06000830188614289565b6147cd6020830187614289565b81810360408301526147df81866142f6565b905081810360608301526147f381856142f6565b905081810360808301526148078184614363565b90509695505050505050565b60006060820190506148286000830186614289565b6148356020830185614289565b6148426040830184614772565b949350505050565b600060a08201905061485f6000830188614289565b61486c6020830187614289565b6148796040830186614772565b6148866060830185614772565b81810360808301526148988184614363565b90509695505050505050565b60006040820190506148b96000830185614289565b6148c66020830184614772565b9392505050565b600060208201905081810360008301526148e78184614298565b905092915050565b6000602082019050818103600083015261490981846142f6565b905092915050565b6000604082019050818103600083015261492b81856142f6565b9050818103602083015261493f81846142f6565b90509392505050565b600060208201905061495d6000830184614354565b92915050565b6000602082019050818103600083015261497d818461439c565b905092915050565b6000602082019050818103600083015261499e816143d5565b9050919050565b600060208201905081810360008301526149be816143f8565b9050919050565b600060208201905081810360008301526149de8161441b565b9050919050565b600060208201905081810360008301526149fe8161443e565b9050919050565b60006020820190508181036000830152614a1e81614461565b9050919050565b60006020820190508181036000830152614a3e81614484565b9050919050565b60006020820190508181036000830152614a5e816144a7565b9050919050565b60006020820190508181036000830152614a7e816144ca565b9050919050565b60006020820190508181036000830152614a9e816144ed565b9050919050565b60006020820190508181036000830152614abe81614510565b9050919050565b60006020820190508181036000830152614ade81614533565b9050919050565b60006020820190508181036000830152614afe81614556565b9050919050565b60006020820190508181036000830152614b1e81614579565b9050919050565b60006020820190508181036000830152614b3e8161459c565b9050919050565b60006020820190508181036000830152614b5e816145bf565b9050919050565b60006020820190508181036000830152614b7e816145e2565b9050919050565b60006020820190508181036000830152614b9e81614605565b9050919050565b60006020820190508181036000830152614bbe81614628565b9050919050565b60006020820190508181036000830152614bde8161464b565b9050919050565b60006020820190508181036000830152614bfe8161466e565b9050919050565b60006020820190508181036000830152614c1e81614691565b9050919050565b60006020820190508181036000830152614c3e816146b4565b9050919050565b60006020820190508181036000830152614c5e816146d7565b9050919050565b60006020820190508181036000830152614c7e816146fa565b9050919050565b60006020820190508181036000830152614c9e8161471d565b9050919050565b60006020820190508181036000830152614cbe81614740565b9050919050565b6000602082019050614cda6000830184614772565b92915050565b6000604082019050614cf56000830185614772565b614d026020830184614772565b9392505050565b6000602082019050614d1e6000830184614781565b92915050565b6000614d2e614d3f565b9050614d3a8282615095565b919050565b6000604051905090565b600067ffffffffffffffff821115614d6457614d636151f5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d9057614d8f6151f5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614dbc57614dbb6151f5565b5b614dc582615264565b9050602081019050919050565b600067ffffffffffffffff821115614ded57614dec6151f5565b5b614df682615264565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614eb88261500a565b9150614ec38361500a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ef857614ef7615139565b5b828201905092915050565b6000614f0e8261500a565b9150614f198361500a565b925082614f2957614f28615168565b5b828204905092915050565b6000614f3f8261500a565b9150614f4a8361500a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f8357614f82615139565b5b828202905092915050565b6000614f9982614fea565b9050919050565b6000614fab82614fea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561504e578082015181840152602081019050615033565b8381111561505d576000848401525b50505050565b6000600282049050600182168061507b57607f821691505b6020821081141561508f5761508e615197565b5b50919050565b61509e82615264565b810181811067ffffffffffffffff821117156150bd576150bc6151f5565b5b80604052505050565b60006150d18261500a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561510457615103615139565b5b600182019050919050565b600061511a82615014565b915060ff82141561512e5761512d615139565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156152435760046000803e615240600051615275565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f4d6572636820726564656d7074696f6e206973206e6f7420617661696c61626c60008201527f65206e6f77000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e50726976696c656765733a2063616c6c6572206973206e6f74206160008201527f6e2061646d696e00000000000000000000000000000000000000000000000000602082015250565b7f496e636f727265637420616d6f756e74206f662045746865722073656e740000600082015250565b7f596f75206861766520616c7265616479206d696e746564000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920636f6e7472616374206f776e65722063616e207472616e7366657260008201527f206f776e65727368697000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f41646d696e5061757361626c653a20636f6e747261637420697320706175736560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f7420617661696c61626c65206e6f7700000000000000600082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f417368205061796d656e74206661696c6564202d20636865636b20696620746860008201527f697320636f6e747261637420697320617070726f766564000000000000000000602082015250565b7f5468697320746f6b656e206d6179206e6f74206265207472616e73666572726560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206265206f6e2074686520616c6c6f776c69737420746f2060008201527f6d696e74206e6f77000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742072656465656d206c657373207468616e206f6e650000000000600082015250565b7f5468697320746f6b656e206d6179206e6f74206265207472616e73666572726560008201527f64206e6f77000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b600060443d10156159da57615a5d565b6159e2614d3f565b60043d036004823e80513d602482011167ffffffffffffffff82111715615a0a575050615a5d565b808201805167ffffffffffffffff811115615a285750505050615a5d565b80602083010160043d038501811115615a45575050505050615a5d565b615a5482602001850186615095565b82955050505050505b90565b615a6981614f8e565b8114615a7457600080fd5b50565b615a8081614fa0565b8114615a8b57600080fd5b50565b615a9781614fb2565b8114615aa257600080fd5b50565b615aae81614fbe565b8114615ab957600080fd5b50565b615ac58161500a565b8114615ad057600080fd5b50565b615adc81615014565b8114615ae757600080fd5b5056fea26469706673582212200124c1a1376c2bb0e04f16a70a0227838fd85018f6f70e0c5cf0398212e4e31764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102875760003560e01c806360dfb2581161015a578063b1c9fe6e116100c1578063db006a751161007a578063db006a75146109e1578063e7f7d15d14610a0a578063e985e9c514610a35578063f242432a14610a72578063f2fde38b14610a9b578063f9c3e62a14610ac457610287565b8063b1c9fe6e146108d1578063b8a1ec31146108fc578063b9c4d9fb14610927578063c4ae316814610964578063c643a0231461097b578063ceceafc0146109b857610287565b80638832bc29116101135780638832bc29146107c15780638da5cb5b146107ec5780639390bc1c14610817578063a22cb46514610842578063a51312c81461086b578063a7cd52cb1461089457610287565b806360dfb258146106c757806368428a1b146106f05780636a6305591461071b5780636c2f5acd14610746578063841718a61461076f57806387090e171461079857610287565b8063216b9926116101fe57806333ea51a8116101b757806333ea51a8146105cd5780633ccfd60b146105f65780634e1273f41461060d5780635207c2731461064a578063548346a1146106735780635c975abb1461069c57610287565b8063216b9926146104aa57806324d7806c146104d35780632a55205a146105105780632eb2c2d61461054e57806330bd36f71461057757806332cb6b0c146105a257610287565b80630ebd4c7f116102505780630ebd4c7f146103975780630ec50353146103d457806311fecb4e146103fd5780631237e5e81461042657806318c41a80146104635780631f21bfbf1461047f57610287565b8062fdd58e1461028c57806301ffc9a7146102c957806302e48fab14610306578063045144cf146103315780630e89341c1461035a575b600080fd5b34801561029857600080fd5b506102b360048036038101906102ae9190613eae565b610aef565b6040516102c09190614cc5565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906140fa565b610bb8565b6040516102fd9190614948565b60405180910390f35b34801561031257600080fd5b5061031b610bda565b6040516103289190614948565b60405180910390f35b34801561033d57600080fd5b50610358600480360381019061035391906140a0565b610bed565b005b34801561036657600080fd5b50610381600480360381019061037c9190614154565b610c52565b60405161038e9190614963565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190614154565b610cf7565b6040516103cb91906148ef565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906140a0565b610dc4565b005b34801561040957600080fd5b50610424600480360381019061041f9190613f9b565b610e29565b005b34801561043257600080fd5b5061044d60048036038101906104489190613c5b565b610efc565b60405161045a9190614d09565b60405180910390f35b61047d600480360381019061047891906140a0565b610f1c565b005b34801561048b57600080fd5b5061049461133d565b6040516104a19190614cc5565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613f3b565b611343565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613c5b565b61141d565b6040516105079190614948565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190614181565b6114cb565b6040516105459291906148a4565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190613d08565b611517565b005b34801561058357600080fd5b5061058c6115b8565b6040516105999190614790565b60405180910390f35b3480156105ae57600080fd5b506105b76115d0565b6040516105c49190614d09565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef9190613c5b565b6115d5565b005b34801561060257600080fd5b5061060b611661565b005b34801561061957600080fd5b50610634600480360381019061062f9190613ffb565b611714565b60405161064191906148ef565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190613eee565b61182d565b005b34801561067f57600080fd5b5061069a60048036038101906106959190614073565b611917565b005b3480156106a857600080fd5b506106b16119de565b6040516106be9190614948565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e991906141ee565b6119f1565b005b3480156106fc57600080fd5b50610705611a68565b6040516107129190614948565b60405180910390f35b34801561072757600080fd5b50610730611a7b565b60405161073d9190614948565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613c88565b611a8e565b005b34801561077b57600080fd5b50610796600480360381019061079191906140a0565b611b22565b005b3480156107a457600080fd5b506107bf60048036038101906107ba9190613eee565b611b87565b005b3480156107cd57600080fd5b506107d6611d69565b6040516107e39190614cc5565b60405180910390f35b3480156107f857600080fd5b50610801611d6f565b60405161080e9190614790565b60405180910390f35b34801561082357600080fd5b5061082c611d95565b6040516108399190614cc5565b60405180910390f35b34801561084e57600080fd5b5061086960048036038101906108649190613e6e565b611d9b565b005b34801561087757600080fd5b50610892600480360381019061088d9190613eee565b611db1565b005b3480156108a057600080fd5b506108bb60048036038101906108b69190613c5b565b611e8b565b6040516108c89190614cc5565b60405180910390f35b3480156108dd57600080fd5b506108e6611ea3565b6040516108f39190614cc5565b60405180910390f35b34801561090857600080fd5b50610911611f09565b60405161091e9190614cc5565b60405180910390f35b34801561093357600080fd5b5061094e60048036038101906109499190614154565b611f0f565b60405161095b91906148cd565b60405180910390f35b34801561097057600080fd5b5061097961202a565b005b34801561098757600080fd5b506109a2600480360381019061099d91906141c1565b612127565b6040516109af9190614948565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da91906140a0565b61215e565b005b3480156109ed57600080fd5b50610a086004803603810190610a039190614154565b6121c3565b005b348015610a1657600080fd5b50610a1f6122e0565b604051610a2c9190614cc5565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190613cc8565b6122e6565b604051610a699190614948565b60405180910390f35b348015610a7e57600080fd5b50610a996004803603810190610a949190613dd7565b61237a565b005b348015610aa757600080fd5b50610ac26004803603810190610abd9190613c5b565b61241b565b005b348015610ad057600080fd5b50610ad96124ef565b604051610ae69190614948565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b57906149e5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610bc382612502565b80610bd35750610bd2826125a2565b5b9050919050565b601060009054906101000a900460ff1681565b610bf63361141d565b610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90614a25565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600e60008381526020019081526020016000208054610c7290615063565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9e90615063565b8015610ceb5780601f10610cc057610100808354040283529160200191610ceb565b820191906000526020600020905b815481529060010190602001808311610cce57829003601f168201915b50505050509050919050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dbf57600167ffffffffffffffff811115610d6a57610d696151f5565b5b604051908082528060200260200182016040528015610d985781602001602082028036833780820191505090505b50905060055481600081518110610db257610db16151c6565b5b6020026020010181815250505b919050565b610dcd3361141d565b610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390614a25565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b610e323361141d565b610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890614a25565b60405180910390fd5b60018160ff161480610e86575060028160ff16145b610e8f57600080fd5b60005b83839050811015610ef657610ee3848483818110610eb357610eb26151c6565b5b9050602002016020810190610ec89190613c5b565b8360ff16600160405180602001604052806000815250612684565b8080610eee906150c6565b915050610e92565b50505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600860009054906101000a900460ff161580610f3d5750610f3c3361141d565b5b610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390614b05565b60405180910390fd5b601060039054906101000a900460ff16610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290614b25565b60405180910390fd5b606460ff16600d5410611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90614ca5565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90614a65565b60405180910390fd5b6000600b54905060006009549050601060019054906101000a900460ff1615611155576000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190614bc5565b60405180910390fd5b600c549150600a5490505b8215611264577364d91f12ece7362f91a6f8e7940cd55f05060b9273ffffffffffffffffffffffffffffffffffffffff166323b872dd33600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b81526004016111ce93929190614813565b602060405180830381600087803b1580156111e857600080fd5b505af11580156111fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122091906140cd565b61125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690614b85565b60405180910390fd5b6112a7565b8134146112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90614a45565b60405180910390fd5b5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081819054906101000a900460ff16809291906113039061510f565b91906101000a81548160ff021916908360ff160217905550506113383360018060405180602001604052806000815250612684565b505050565b600d5481565b61134c3361141d565b61138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290614a25565b60405180910390fd5b60005b838390508110156114175781600760008686858181106113b1576113b06151c6565b5b90506020020160208101906113c69190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061140f906150c6565b91505061138e565b50505050565b60008173ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806114c45750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b9050919050565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600554856115029190614f34565b61150c9190614f03565b915091509250929050565b61151f6126b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061156557506115648561155f6126b9565b6122e6565b5b6115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614ae5565b60405180910390fd5b6115b185858585856126c1565b5050505050565b7364d91f12ece7362f91a6f8e7940cd55f05060b9281565b606481565b6115de3361141d565b61161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490614a25565b60405180910390fd5b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61166a3361141d565b6116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090614a25565b60405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611711573d6000803e3d6000fd5b50565b6060815183511461175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190614c05565b60405180910390fd5b6000835167ffffffffffffffff811115611777576117766151f5565b5b6040519080825280602002602001820160405280156117a55781602001602082028036833780820191505090505b50905060005b8451811015611822576117f28582815181106117ca576117c96151c6565b5b60200260200101518583815181106117e5576117e46151c6565b5b6020026020010151610aef565b828281518110611805576118046151c6565b5b6020026020010181815250508061181b906150c6565b90506117ab565b508091505092915050565b6118363361141d565b611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90614a25565b60405180910390fd5b60005b82829050811015611912576007600084848481811061189a576118996151c6565b5b90506020020160208101906118af9190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906118fa906150c6565b9190505550808061190a906150c6565b915050611878565b505050565b6119203361141d565b61195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690614a25565b60405180910390fd5b80600060048110611973576119726151c6565b5b602002013560098190555080600160048110611992576119916151c6565b5b6020020135600a81905550806002600481106119b1576119b06151c6565b5b6020020135600b81905550806003600481106119d0576119cf6151c6565b5b6020020135600c8190555050565b600860009054906101000a900460ff1681565b6119fa3361141d565b611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3090614a25565b60405180910390fd5b80600e60008460ff1681526020019081526020016000209080519060200190611a6392919061387c565b505050565b601060039054906101000a900460ff1681565b601060029054906101000a900460ff1681565b611a973361141d565b611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd90614a25565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806005819055505050565b611b2b3361141d565b611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614a25565b60405180910390fd5b80601060036101000a81548160ff02191690831515021790555050565b611b903361141d565b611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690614a25565b60405180910390fd5b60005b82829050811015611d645760046000848484818110611bf457611bf36151c6565b5b9050602002016020810190611c099190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cd15760046000848484818110611c6d57611c6c6151c6565b5b9050602002016020810190611c829190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff0219169055611d51565b600160046000858585818110611cea57611ce96151c6565b5b9050602002016020810190611cff9190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8080611d5c906150c6565b915050611bd2565b505050565b600b5481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b611dad611da66126b9565b83836129e3565b5050565b611dba3361141d565b611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090614a25565b60405180910390fd5b60005b82829050811015611e8657600060076000858585818110611e2057611e1f6151c6565b5b9050602002016020810190611e359190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611e7e906150c6565b915050611dfc565b505050565b60076020528060005260406000206000915090505481565b6000601060029054906101000a900460ff1615611ee257601060009054906101000a900460ff16611ed5576003611ed8565b60025b60ff169050611f06565b601060009054906101000a900460ff16611efd576004611f00565b60015b60ff1690505b90565b600a5481565b6060600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461202557600167ffffffffffffffff811115611f8257611f816151f5565b5b604051908082528060200260200182016040528015611fb05781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110611fea57611fe96151c6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b6120333361141d565b612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990614a25565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550600860009054906101000a900460ff16156120ed577f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258336040516120e09190614790565b60405180910390a1612125565b7f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa3360405161211c9190614790565b60405180910390a15b565b600060018260ff161480156121495750601060029054906101000a900460ff16155b612154576001612157565b60005b9050919050565b6121673361141d565b6121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d90614a25565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b600860009054906101000a900460ff1615806121e457506121e33361141d565b5b612223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221a90614b05565b60405180910390fd5b601060009054906101000a900460ff16612272576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612269906149a5565b60405180910390fd5b600081116122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ac90614c25565b60405180910390fd5b6122c133600183612b50565b6122dd3360028360405180602001604052806000815250612684565b50565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123826126b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806123c857506123c7856123c26126b9565b6122e6565b5b612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe90614a85565b60405180910390fd5b6124148585858585612d97565b5050505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a290614aa5565b60405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601060019054906101000a900460ff1681565b6000632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061259b575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061266d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061267d575061267c82613033565b5b9050919050565b60018314156126a75781600d600082825461269f9190614ead565b925050819055505b6126b38484848461309d565b50505050565b600033905090565b8151835114612705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fc90614c65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276c90614ac5565b60405180910390fd5b600061277f6126b9565b905061278f81878787878761324e565b60005b84518110156129405760008582815181106127b0576127af6151c6565b5b6020026020010151905060008583815181106127cf576127ce6151c6565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790614b65565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129259190614ead565b9250508190555050505080612939906150c6565b9050612792565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516129b7929190614911565b60405180910390a46129cd818787878787613401565b6129db818787878787613409565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990614be5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b439190614948565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb790614b45565b60405180910390fd5b6000612bca6126b9565b90506000612bd7846135f0565b90506000612be4846135f0565b9050612c048387600085856040518060200160405280600081525061324e565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015612c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9290614a05565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612d68929190614ce0565b60405180910390a4612d8e84886000868660405180602001604052806000815250613401565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfe90614ac5565b60405180910390fd5b6000612e116126b9565b90506000612e1e856135f0565b90506000612e2b856135f0565b9050612e3b83898985858961324e565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec990614b65565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f879190614ead565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051613004929190614ce0565b60405180910390a461301a848a8a86868a613401565b613028848a8a8a8a8a61366a565b505050505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561310d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310490614c85565b60405180910390fd5b60006131176126b9565b90506000613124856135f0565b90506000613131856135f0565b90506131428360008985858961324e565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131a19190614ead565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161321f929190614ce0565b60405180910390a461323683600089858589613401565b6132458360008989898961366a565b50505050505050565b600860009054906101000a900460ff16158061326f575061326e3361141d565b5b6132ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a590614b05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156133185750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156133eb57601060029054906101000a900460ff161561336d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336490614c45565b60405180910390fd5b60005b83518110156133e957600184828151811061338e5761338d6151c6565b5b6020026020010151146133d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cd90614ba5565b60405180910390fd5b80806133e1906150c6565b915050613370565b505b6133f9868686868686613851565b505050505050565b505050505050565b6134288473ffffffffffffffffffffffffffffffffffffffff16613859565b156135e8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161346e9594939291906147ab565b602060405180830381600087803b15801561348857600080fd5b505af19250505080156134b957506040513d601f19601f820116820180604052508101906134b69190614127565b60015b61355f576134c5615224565b806308c379a0141561352257506134da6159ca565b806134e55750613524565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135199190614963565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355690614985565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146135e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135dd906149c5565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561360f5761360e6151f5565b5b60405190808252806020026020018201604052801561363d5781602001602082028036833780820191505090505b5090508281600081518110613655576136546151c6565b5b60200260200101818152505080915050919050565b6136898473ffffffffffffffffffffffffffffffffffffffff16613859565b15613849578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016136cf95949392919061484a565b602060405180830381600087803b1580156136e957600080fd5b505af192505050801561371a57506040513d601f19601f820116820180604052508101906137179190614127565b60015b6137c057613726615224565b806308c379a01415613783575061373b6159ca565b806137465750613785565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377a9190614963565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b790614985565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383e906149c5565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461388890615063565b90600052602060002090601f0160209004810192826138aa57600085556138f1565b82601f106138c357805160ff19168380011785556138f1565b828001600101855582156138f1579182015b828111156138f05782518255916020019190600101906138d5565b5b5090506138fe9190613902565b5090565b5b8082111561391b576000816000905550600101613903565b5090565b600061393261392d84614d49565b614d24565b9050808382526020820190508285602086028201111561395557613954615250565b5b60005b85811015613985578161396b8882613a83565b845260208401935060208301925050600181019050613958565b5050509392505050565b60006139a261399d84614d75565b614d24565b905080838252602082019050828560208602820111156139c5576139c4615250565b5b60005b858110156139f557816139db8882613c31565b8452602084019350602083019250506001810190506139c8565b5050509392505050565b6000613a12613a0d84614da1565b614d24565b905082815260208101848484011115613a2e57613a2d615255565b5b613a39848285615021565b509392505050565b6000613a54613a4f84614dd2565b614d24565b905082815260208101848484011115613a7057613a6f615255565b5b613a7b848285615021565b509392505050565b600081359050613a9281615a60565b92915050565b600081359050613aa781615a77565b92915050565b60008083601f840112613ac357613ac261524b565b5b8235905067ffffffffffffffff811115613ae057613adf615246565b5b602083019150836020820283011115613afc57613afb615250565b5b9250929050565b600082601f830112613b1857613b1761524b565b5b8135613b2884826020860161391f565b91505092915050565b600081905082602060040282011115613b4d57613b4c615250565b5b92915050565b600082601f830112613b6857613b6761524b565b5b8135613b7884826020860161398f565b91505092915050565b600081359050613b9081615a8e565b92915050565b600081519050613ba581615a8e565b92915050565b600081359050613bba81615aa5565b92915050565b600081519050613bcf81615aa5565b92915050565b600082601f830112613bea57613be961524b565b5b8135613bfa8482602086016139ff565b91505092915050565b600082601f830112613c1857613c1761524b565b5b8135613c28848260208601613a41565b91505092915050565b600081359050613c4081615abc565b92915050565b600081359050613c5581615ad3565b92915050565b600060208284031215613c7157613c7061525f565b5b6000613c7f84828501613a83565b91505092915050565b60008060408385031215613c9f57613c9e61525f565b5b6000613cad85828601613a98565b9250506020613cbe85828601613c31565b9150509250929050565b60008060408385031215613cdf57613cde61525f565b5b6000613ced85828601613a83565b9250506020613cfe85828601613a83565b9150509250929050565b600080600080600060a08688031215613d2457613d2361525f565b5b6000613d3288828901613a83565b9550506020613d4388828901613a83565b945050604086013567ffffffffffffffff811115613d6457613d6361525a565b5b613d7088828901613b53565b935050606086013567ffffffffffffffff811115613d9157613d9061525a565b5b613d9d88828901613b53565b925050608086013567ffffffffffffffff811115613dbe57613dbd61525a565b5b613dca88828901613bd5565b9150509295509295909350565b600080600080600060a08688031215613df357613df261525f565b5b6000613e0188828901613a83565b9550506020613e1288828901613a83565b9450506040613e2388828901613c31565b9350506060613e3488828901613c31565b925050608086013567ffffffffffffffff811115613e5557613e5461525a565b5b613e6188828901613bd5565b9150509295509295909350565b60008060408385031215613e8557613e8461525f565b5b6000613e9385828601613a83565b9250506020613ea485828601613b81565b9150509250929050565b60008060408385031215613ec557613ec461525f565b5b6000613ed385828601613a83565b9250506020613ee485828601613c31565b9150509250929050565b60008060208385031215613f0557613f0461525f565b5b600083013567ffffffffffffffff811115613f2357613f2261525a565b5b613f2f85828601613aad565b92509250509250929050565b600080600060408486031215613f5457613f5361525f565b5b600084013567ffffffffffffffff811115613f7257613f7161525a565b5b613f7e86828701613aad565b93509350506020613f9186828701613c31565b9150509250925092565b600080600060408486031215613fb457613fb361525f565b5b600084013567ffffffffffffffff811115613fd257613fd161525a565b5b613fde86828701613aad565b93509350506020613ff186828701613c46565b9150509250925092565b600080604083850312156140125761401161525f565b5b600083013567ffffffffffffffff8111156140305761402f61525a565b5b61403c85828601613b03565b925050602083013567ffffffffffffffff81111561405d5761405c61525a565b5b61406985828601613b53565b9150509250929050565b6000608082840312156140895761408861525f565b5b600061409784828501613b31565b91505092915050565b6000602082840312156140b6576140b561525f565b5b60006140c484828501613b81565b91505092915050565b6000602082840312156140e3576140e261525f565b5b60006140f184828501613b96565b91505092915050565b6000602082840312156141105761410f61525f565b5b600061411e84828501613bab565b91505092915050565b60006020828403121561413d5761413c61525f565b5b600061414b84828501613bc0565b91505092915050565b60006020828403121561416a5761416961525f565b5b600061417884828501613c31565b91505092915050565b600080604083850312156141985761419761525f565b5b60006141a685828601613c31565b92505060206141b785828601613c31565b9150509250929050565b6000602082840312156141d7576141d661525f565b5b60006141e584828501613c46565b91505092915050565b600080604083850312156142055761420461525f565b5b600061421385828601613c46565b925050602083013567ffffffffffffffff8111156142345761423361525a565b5b61424085828601613c03565b9150509250929050565b6000614256838361427a565b60208301905092915050565b600061426e8383614763565b60208301905092915050565b61428381614fa0565b82525050565b61429281614f8e565b82525050565b60006142a382614e23565b6142ad8185614e69565b93506142b883614e03565b8060005b838110156142e95781516142d0888261424a565b97506142db83614e4f565b9250506001810190506142bc565b5085935050505092915050565b600061430182614e2e565b61430b8185614e7a565b935061431683614e13565b8060005b8381101561434757815161432e8882614262565b975061433983614e5c565b92505060018101905061431a565b5085935050505092915050565b61435d81614fb2565b82525050565b600061436e82614e39565b6143788185614e8b565b9350614388818560208601615030565b61439181615264565b840191505092915050565b60006143a782614e44565b6143b18185614e9c565b93506143c1818560208601615030565b6143ca81615264565b840191505092915050565b60006143e2603483614e9c565b91506143ed82615282565b604082019050919050565b6000614405602583614e9c565b9150614410826152d1565b604082019050919050565b6000614428602883614e9c565b915061443382615320565b604082019050919050565b600061444b602b83614e9c565b91506144568261536f565b604082019050919050565b600061446e602483614e9c565b9150614479826153be565b604082019050919050565b6000614491602783614e9c565b915061449c8261540d565b604082019050919050565b60006144b4601e83614e9c565b91506144bf8261545c565b602082019050919050565b60006144d7601783614e9c565b91506144e282615485565b602082019050919050565b60006144fa602983614e9c565b9150614505826154ae565b604082019050919050565b600061451d602a83614e9c565b9150614528826154fd565b604082019050919050565b6000614540602583614e9c565b915061454b8261554c565b604082019050919050565b6000614563603283614e9c565b915061456e8261559b565b604082019050919050565b6000614586602183614e9c565b9150614591826155ea565b604082019050919050565b60006145a9601983614e9c565b91506145b482615639565b602082019050919050565b60006145cc602383614e9c565b91506145d782615662565b604082019050919050565b60006145ef602a83614e9c565b91506145fa826156b1565b604082019050919050565b6000614612603783614e9c565b915061461d82615700565b604082019050919050565b6000614635602183614e9c565b91506146408261574f565b604082019050919050565b6000614658602883614e9c565b91506146638261579e565b604082019050919050565b600061467b602983614e9c565b9150614686826157ed565b604082019050919050565b600061469e602983614e9c565b91506146a98261583c565b604082019050919050565b60006146c1601b83614e9c565b91506146cc8261588b565b602082019050919050565b60006146e4602583614e9c565b91506146ef826158b4565b604082019050919050565b6000614707602883614e9c565b915061471282615903565b604082019050919050565b600061472a602183614e9c565b915061473582615952565b604082019050919050565b600061474d601b83614e9c565b9150614758826159a1565b602082019050919050565b61476c8161500a565b82525050565b61477b8161500a565b82525050565b61478a81615014565b82525050565b60006020820190506147a56000830184614289565b92915050565b600060a0820190506147c06000830188614289565b6147cd6020830187614289565b81810360408301526147df81866142f6565b905081810360608301526147f381856142f6565b905081810360808301526148078184614363565b90509695505050505050565b60006060820190506148286000830186614289565b6148356020830185614289565b6148426040830184614772565b949350505050565b600060a08201905061485f6000830188614289565b61486c6020830187614289565b6148796040830186614772565b6148866060830185614772565b81810360808301526148988184614363565b90509695505050505050565b60006040820190506148b96000830185614289565b6148c66020830184614772565b9392505050565b600060208201905081810360008301526148e78184614298565b905092915050565b6000602082019050818103600083015261490981846142f6565b905092915050565b6000604082019050818103600083015261492b81856142f6565b9050818103602083015261493f81846142f6565b90509392505050565b600060208201905061495d6000830184614354565b92915050565b6000602082019050818103600083015261497d818461439c565b905092915050565b6000602082019050818103600083015261499e816143d5565b9050919050565b600060208201905081810360008301526149be816143f8565b9050919050565b600060208201905081810360008301526149de8161441b565b9050919050565b600060208201905081810360008301526149fe8161443e565b9050919050565b60006020820190508181036000830152614a1e81614461565b9050919050565b60006020820190508181036000830152614a3e81614484565b9050919050565b60006020820190508181036000830152614a5e816144a7565b9050919050565b60006020820190508181036000830152614a7e816144ca565b9050919050565b60006020820190508181036000830152614a9e816144ed565b9050919050565b60006020820190508181036000830152614abe81614510565b9050919050565b60006020820190508181036000830152614ade81614533565b9050919050565b60006020820190508181036000830152614afe81614556565b9050919050565b60006020820190508181036000830152614b1e81614579565b9050919050565b60006020820190508181036000830152614b3e8161459c565b9050919050565b60006020820190508181036000830152614b5e816145bf565b9050919050565b60006020820190508181036000830152614b7e816145e2565b9050919050565b60006020820190508181036000830152614b9e81614605565b9050919050565b60006020820190508181036000830152614bbe81614628565b9050919050565b60006020820190508181036000830152614bde8161464b565b9050919050565b60006020820190508181036000830152614bfe8161466e565b9050919050565b60006020820190508181036000830152614c1e81614691565b9050919050565b60006020820190508181036000830152614c3e816146b4565b9050919050565b60006020820190508181036000830152614c5e816146d7565b9050919050565b60006020820190508181036000830152614c7e816146fa565b9050919050565b60006020820190508181036000830152614c9e8161471d565b9050919050565b60006020820190508181036000830152614cbe81614740565b9050919050565b6000602082019050614cda6000830184614772565b92915050565b6000604082019050614cf56000830185614772565b614d026020830184614772565b9392505050565b6000602082019050614d1e6000830184614781565b92915050565b6000614d2e614d3f565b9050614d3a8282615095565b919050565b6000604051905090565b600067ffffffffffffffff821115614d6457614d636151f5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d9057614d8f6151f5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614dbc57614dbb6151f5565b5b614dc582615264565b9050602081019050919050565b600067ffffffffffffffff821115614ded57614dec6151f5565b5b614df682615264565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614eb88261500a565b9150614ec38361500a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ef857614ef7615139565b5b828201905092915050565b6000614f0e8261500a565b9150614f198361500a565b925082614f2957614f28615168565b5b828204905092915050565b6000614f3f8261500a565b9150614f4a8361500a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f8357614f82615139565b5b828202905092915050565b6000614f9982614fea565b9050919050565b6000614fab82614fea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561504e578082015181840152602081019050615033565b8381111561505d576000848401525b50505050565b6000600282049050600182168061507b57607f821691505b6020821081141561508f5761508e615197565b5b50919050565b61509e82615264565b810181811067ffffffffffffffff821117156150bd576150bc6151f5565b5b80604052505050565b60006150d18261500a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561510457615103615139565b5b600182019050919050565b600061511a82615014565b915060ff82141561512e5761512d615139565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156152435760046000803e615240600051615275565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f4d6572636820726564656d7074696f6e206973206e6f7420617661696c61626c60008201527f65206e6f77000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e50726976696c656765733a2063616c6c6572206973206e6f74206160008201527f6e2061646d696e00000000000000000000000000000000000000000000000000602082015250565b7f496e636f727265637420616d6f756e74206f662045746865722073656e740000600082015250565b7f596f75206861766520616c7265616479206d696e746564000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920636f6e7472616374206f776e65722063616e207472616e7366657260008201527f206f776e65727368697000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f41646d696e5061757361626c653a20636f6e747261637420697320706175736560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f7420617661696c61626c65206e6f7700000000000000600082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f417368205061796d656e74206661696c6564202d20636865636b20696620746860008201527f697320636f6e747261637420697320617070726f766564000000000000000000602082015250565b7f5468697320746f6b656e206d6179206e6f74206265207472616e73666572726560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206265206f6e2074686520616c6c6f776c69737420746f2060008201527f6d696e74206e6f77000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742072656465656d206c657373207468616e206f6e650000000000600082015250565b7f5468697320746f6b656e206d6179206e6f74206265207472616e73666572726560008201527f64206e6f77000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b600060443d10156159da57615a5d565b6159e2614d3f565b60043d036004823e80513d602482011167ffffffffffffffff82111715615a0a575050615a5d565b808201805167ffffffffffffffff811115615a285750505050615a5d565b80602083010160043d038501811115615a45575050505050615a5d565b615a5482602001850186615095565b82955050505050505b90565b615a6981614f8e565b8114615a7457600080fd5b50565b615a8081614fa0565b8114615a8b57600080fd5b50565b615a9781614fb2565b8114615aa257600080fd5b50565b615aae81614fbe565b8114615ab957600080fd5b50565b615ac58161500a565b8114615ad057600080fd5b50565b615adc81615014565b8114615ae757600080fd5b5056fea26469706673582212200124c1a1376c2bb0e04f16a70a0227838fd85018f6f70e0c5cf0398212e4e31764736f6c63430008070033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.