ETH Price: $3,501.49 (+0.06%)
Gas: 5 Gwei

Token

Nifty Island: Ultra Blades ()
 

Overview

Max Total Supply

498

Holders

257

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sealclubber.evilempire.eth
0x0ca85b489A1276eF7042F1d032D0eF3831EaF4ca
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A sacred weapon forged from an ultra palm. The metaverse ronin who wield them are the guardians of the metaverse. Each ultra blade comes with a blade ticket, which can be burned for a ‘real’ blade in the analogue world."

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BladeERC1155

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : BladeERC1155.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.3;

import { ERC1155 } from "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import { ERC1155Burnable } from "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract BladeERC1155 is ERC1155, ERC1155Burnable, Ownable {
    address private _signer;
    string private _baseURI = "https://nifty-island-sword-drop-public.s3.us-east-2.amazonaws.com/";
    string private _contractMetadataURI = "bladeContract.json";
    mapping(uint256 => string) public tokenMetadata;
    mapping(uint256 => bool) private usedNonces;

    uint256[] private ids = [0, 1];
    uint256[] private initialMintAmount = [50, 50];

    event TicketRedeemed(address redeemer);

    constructor(address signer, address initialBatchTo) ERC1155("https://nifty-island-sword-drop-public.s3.us-east-2.amazonaws.com/") {
        _signer = signer;
        tokenMetadata[0] = "blade.json";
        tokenMetadata[1] = "ticket.json";
        _mintBatch(initialBatchTo, ids, initialMintAmount, "");
    }

    function updateSigner(address newSigner) external onlyOwner {
        _signer = newSigner;
    }

    function mint(address to, uint256 nonce, bytes calldata signature)
        external {
        require(usedNonces[nonce] == false, "can't use the same signature twice");
        usedNonces[nonce] = true;

        bytes32 hash = ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(to, nonce)));
        require(ECDSA.recover(hash, signature) == _signer, "Signature failed to recover");

        _mint(to, 0, 1, "");
        _mint(to, 1, 1, "");
    }

    function burnTicket() external {
        require(balanceOf(msg.sender, 1) >= 1, "Caller has no ticket");
        _burn(msg.sender, 1, 1);
        emit TicketRedeemed(msg.sender);
    }

    function updateMetadata(uint256 tokenId, string memory metadata)
        external
        onlyOwner {
        tokenMetadata[tokenId] = metadata;
    }

    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    function updateBaseURI(string memory newURI) external onlyOwner {
        _baseURI = newURI;
    }

    function uri(uint256 id) public view override returns (string memory) {
        string memory base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenMetadata[id])) : ""; 
    }

    function contractURI() public view returns (string memory) {
        string memory base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, _contractMetadataURI)) : ""; 
    }

    function updateContractURI(string memory newURI) external onlyOwner {
        _contractMetadataURI = newURI;
    }
}

File 2 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT

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 {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).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(to).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 3 of 12 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

File 4 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 5 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return recover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 6 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT

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 7 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

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.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

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

File 8 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

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 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 10 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"initialBatchTo","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"redeemer","type":"address"}],"name":"TicketRedeemed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnTicket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"metadata","type":"string"}],"name":"updateMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"updateSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405260405180608001604052806042815260200162005aee604291396005908051906020019062000035929190620008d3565b506040518060400160405280601281526020017f626c616465436f6e74726163742e6a736f6e00000000000000000000000000008152506006908051906020019062000083929190620008d3565b506040518060400160405280600060ff168152602001600160ff168152506009906002620000b392919062000964565b506040518060400160405280603260ff168152602001603260ff16815250600a906002620000e392919062000964565b50348015620000f157600080fd5b5060405162005b3038038062005b30833981810160405281019062000117919062000a08565b60405180608001604052806042815260200162005aee6042913962000142816200033260201b60201c565b5062000163620001576200034e60201b60201c565b6200035660201b60201c565b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600a81526020017f626c6164652e6a736f6e0000000000000000000000000000000000000000000081525060076000808152602001908152602001600020908051906020019062000202929190620008d3565b506040518060400160405280600b81526020017f7469636b65742e6a736f6e0000000000000000000000000000000000000000008152506007600060018152602001908152602001600020908051906020019062000262929190620008d3565b506200032a816009805480602002602001604051908101604052809291908181526020018280548015620002b657602002820191906000526020600020905b815481526020019060010190808311620002a1575b5050505050600a8054806020026020016040519081016040528092919081815260200182805480156200030957602002820191906000526020600020905b815481526020019060010190808311620002f4575b5050505050604051806020016040528060008152506200041c60201b60201c565b5050620012a6565b80600290805190602001906200034a929190620008d3565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200048f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004869062000d70565b60405180910390fd5b8151835114620004d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004cd9062000d4e565b60405180910390fd5b6000620004e86200034e60201b60201c565b90506200050181600087878787620006ae60201b60201c565b60005b84518110156200060e5783818151811062000548577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000808784815181106200058d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005f1919062000e0d565b925050819055508080620006059062000f76565b91505062000504565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516200068892919062000cab565b60405180910390a4620006a781600087878787620006b660201b60201c565b5050505050565b505050505050565b620006e28473ffffffffffffffffffffffffffffffffffffffff16620008c060201b6200149c1760201c565b15620008b8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016200072b95949392919062000c39565b602060405180830381600087803b1580156200074657600080fd5b505af19250505080156200077a57506040513d601f19601f8201168201806040525081019062000777919062000a49565b60015b6200082c576200078962001051565b806308c379a01415620007ed5750620007a1620011d0565b80620007ae5750620007ef565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e4919062000ce6565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008239062000d0a565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614620008b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ad9062000d2c565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054620008e19062000f0a565b90600052602060002090601f01602090048101928262000905576000855562000951565b82601f106200092057805160ff191683800117855562000951565b8280016001018555821562000951579182015b828111156200095057825182559160200191906001019062000933565b5b509050620009609190620009bb565b5090565b828054828255906000526020600020908101928215620009a8579160200282015b82811115620009a7578251829060ff1690559160200191906001019062000985565b5b509050620009b79190620009bb565b5090565b5b80821115620009d6576000816000905550600101620009bc565b5090565b600081519050620009eb8162001272565b92915050565b60008151905062000a02816200128c565b92915050565b6000806040838503121562000a1c57600080fd5b600062000a2c85828601620009da565b925050602062000a3f85828601620009da565b9150509250929050565b60006020828403121562000a5c57600080fd5b600062000a6c84828501620009f1565b91505092915050565b600062000a83838362000c28565b60208301905092915050565b62000a9a8162000e6a565b82525050565b600062000aad8262000dac565b62000ab9818562000dda565b935062000ac68362000d9c565b8060005b8381101562000afd57815162000ae1888262000a75565b975062000aee8362000dcd565b92505060018101905062000aca565b5085935050505092915050565b600062000b178262000db7565b62000b23818562000deb565b935062000b3581856020860162000ed4565b62000b408162001076565b840191505092915050565b600062000b588262000dc2565b62000b64818562000dfc565b935062000b7681856020860162000ed4565b62000b818162001076565b840191505092915050565b600062000b9b60348362000dfc565b915062000ba88262001094565b604082019050919050565b600062000bc260288362000dfc565b915062000bcf82620010e3565b604082019050919050565b600062000be960288362000dfc565b915062000bf68262001132565b604082019050919050565b600062000c1060218362000dfc565b915062000c1d8262001181565b604082019050919050565b62000c338162000eca565b82525050565b600060a08201905062000c50600083018862000a8f565b62000c5f602083018762000a8f565b818103604083015262000c73818662000aa0565b9050818103606083015262000c89818562000aa0565b9050818103608083015262000c9f818462000b0a565b90509695505050505050565b6000604082019050818103600083015262000cc7818562000aa0565b9050818103602083015262000cdd818462000aa0565b90509392505050565b6000602082019050818103600083015262000d02818462000b4b565b905092915050565b6000602082019050818103600083015262000d258162000b8c565b9050919050565b6000602082019050818103600083015262000d478162000bb3565b9050919050565b6000602082019050818103600083015262000d698162000bda565b9050919050565b6000602082019050818103600083015262000d8b8162000c01565b9050919050565b6000604051905090565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000e1a8262000eca565b915062000e278362000eca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e5f5762000e5e62000fc4565b5b828201905092915050565b600062000e778262000eaa565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000ef457808201518184015260208101905062000ed7565b8381111562000f04576000848401525b50505050565b6000600282049050600182168062000f2357607f821691505b6020821081141562000f3a5762000f3962000ff3565b5b50919050565b62000f4b8262001076565b810181811067ffffffffffffffff8211171562000f6d5762000f6c62001022565b5b80604052505050565b600062000f838262000eca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000fb95762000fb862000fc4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115620010735760046000803e6200107060005162001087565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015620011e2576200126f565b620011ec62000d92565b60043d036004823e80513d602482011167ffffffffffffffff82111715620012165750506200126f565b808201805167ffffffffffffffff8111156200123657505050506200126f565b80602083010160043d038501811115620012555750505050506200126f565b620012668260200185018662000f40565b82955050505050505b90565b6200127d8162000e6a565b81146200128957600080fd5b50565b620012978162000e7e565b8114620012a357600080fd5b50565b61483880620012b66000396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c80637e5b1e24116100b8578063a7ecd37e1161007c578063a7ecd37e1461034a578063e8a3d48514610366578063e985e9c514610384578063f242432a146103b4578063f2fde38b146103d0578063f5298aca146103ec57610141565b80637e5b1e24146102bc5780638da5cb5b146102d8578063931688cb146102f657806394d008ef14610312578063a22cb4651461032e57610141565b806353c8388e1161010a57806353c8388e146102225780636914db601461023e5780636b20c4541461026e5780636c0360eb1461028a578063715018a6146102a857806372998ce4146102b257610141565b8062fdd58e1461014657806301ffc9a7146101765780630e89341c146101a65780632eb2c2d6146101d65780634e1273f4146101f2575b600080fd5b610160600480360381019061015b9190612f89565b610408565b60405161016d9190613c46565b60405180910390f35b610190600480360381019061018b91906130ec565b6104d1565b60405161019d9190613904565b60405180910390f35b6101c060048036038101906101bb919061317f565b6105b3565b6040516101cd9190613964565b60405180910390f35b6101f060048036038101906101eb9190612d80565b61061c565b005b61020c60048036038101906102079190613080565b6106bd565b60405161021991906138ab565b60405180910390f35b61023c600480360381019061023791906131a8565b61086e565b005b6102586004803603810190610253919061317f565b610916565b6040516102659190613964565b60405180910390f35b61028860048036038101906102839190612ece565b6109b6565b005b610292610a53565b60405161029f9190613964565b60405180910390f35b6102b0610ae5565b005b6102ba610b6d565b005b6102d660048036038101906102d1919061313e565b610c00565b005b6102e0610c96565b6040516102ed91906137ce565b60405180910390f35b610310600480360381019061030b919061313e565b610cc0565b005b61032c60048036038101906103279190612fc5565b610d56565b005b61034860048036038101906103439190612f4d565b610f3b565b005b610364600480360381019061035f9190612d1b565b6110bc565b005b61036e61117c565b60405161037b9190613964565b60405180910390f35b61039e60048036038101906103999190612d44565b6111d2565b6040516103ab9190613904565b60405180910390f35b6103ce60048036038101906103c99190612e3f565b611266565b005b6103ea60048036038101906103e59190612d1b565b611307565b005b61040660048036038101906104019190613031565b6113ff565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047090613a06565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105ac57506105ab826114af565b5b9050919050565b606060006105bf610a53565b905060008151116105df5760405180602001604052806000815250610614565b8060076000858152602001908152602001600020604051602001610604929190613784565b6040516020818303038152906040525b915050919050565b610624611519565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061066a575061066985610664611519565b6111d2565b5b6106a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a090613b06565b60405180910390fd5b6106b68585858585611521565b5050505050565b60608151835114610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90613be6565b60405180910390fd5b6000835167ffffffffffffffff811115610746577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107745781602001602082028036833780820191505090505b50905060005b84518110156108635761080d8582815181106107bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610800577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610408565b828281518110610846577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061085c90613f80565b905061077a565b508091505092915050565b610876611519565b73ffffffffffffffffffffffffffffffffffffffff16610894610c96565b73ffffffffffffffffffffffffffffffffffffffff16146108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190613ba6565b60405180910390fd5b806007600084815260200190815260200160002090805190602001906109119291906129c9565b505050565b6007602052806000526040600020600091509050805461093590613f1d565b80601f016020809104026020016040519081016040528092919081815260200182805461096190613f1d565b80156109ae5780601f10610983576101008083540402835291602001916109ae565b820191906000526020600020905b81548152906001019060200180831161099157829003601f168201915b505050505081565b6109be611519565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a045750610a03836109fe611519565b6111d2565b5b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90613a86565b60405180910390fd5b610a4e838383611881565b505050565b606060058054610a6290613f1d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8e90613f1d565b8015610adb5780601f10610ab057610100808354040283529160200191610adb565b820191906000526020600020905b815481529060010190602001808311610abe57829003601f168201915b5050505050905090565b610aed611519565b73ffffffffffffffffffffffffffffffffffffffff16610b0b610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890613ba6565b60405180910390fd5b610b6b6000611b7e565b565b6001610b7a336001610408565b1015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613aa6565b60405180910390fd5b610bc733600180611c44565b7f399be8ae94de99e97bd761c26218c6834a58d80b3e774ef494986a406fb546d333604051610bf691906137ce565b60405180910390a1565b610c08611519565b73ffffffffffffffffffffffffffffffffffffffff16610c26610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390613ba6565b60405180910390fd5b8060069080519060200190610c929291906129c9565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cc8611519565b73ffffffffffffffffffffffffffffffffffffffff16610ce6610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613ba6565b60405180910390fd5b8060059080519060200190610d529291906129c9565b5050565b600015156008600085815260200190815260200160002060009054906101000a900460ff16151514610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490613a66565b60405180910390fd5b60016008600085815260200190815260200160002060006101000a81548160ff0219169083151502179055506000610e1c8585604051602001610e01929190613758565b60405160208183030381529060405280519060200120611e61565b9050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ea58285858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611e91565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613b26565b60405180910390fd5b610f18856000600160405180602001604052806000815250611f40565b610f348560018060405180602001604052806000815250611f40565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff16610f5a611519565b73ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890613bc6565b60405180910390fd5b8060016000610fbe611519565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661106b611519565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110b09190613904565b60405180910390a35050565b6110c4611519565b73ffffffffffffffffffffffffffffffffffffffff166110e2610c96565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613ba6565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000611188610a53565b905060008151116111a857604051806020016040528060008152506111cc565b8060066040516020016111bc929190613784565b6040516020818303038152906040525b91505090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61126e611519565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112b457506112b3856112ae611519565b6111d2565b5b6112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90613a86565b60405180910390fd5b61130085858585856120d6565b5050505050565b61130f611519565b73ffffffffffffffffffffffffffffffffffffffff1661132d610c96565b73ffffffffffffffffffffffffffffffffffffffff1614611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613ba6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90613a26565b60405180910390fd5b6113fc81611b7e565b50565b611407611519565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061144d575061144c83611447611519565b6111d2565b5b61148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390613a86565b60405180910390fd5b611497838383611c44565b505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90613c06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613ae6565b60405180910390fd5b60006115df611519565b90506115ef818787878787612358565b60005b84518110156117ec576000858281518110611636577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061167b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390613b86565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117d19190613dfa565b92505081905550505050806117e590613f80565b90506115f2565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118639291906138cd565b60405180910390a4611879818787878787612360565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613b66565b60405180910390fd5b8051825114611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613c06565b60405180910390fd5b600061193f611519565b905061195f81856000868660405180602001604052806000815250612358565b60005b8351811015611af85760008482815181106119a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106119eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613a46565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611af090613f80565b915050611962565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611b709291906138cd565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613b66565b60405180910390fd5b6000611cbe611519565b9050611cee81856000611cd087612547565b611cd987612547565b60405180602001604052806000815250612358565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90613a46565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611e52929190613c61565b60405180910390a45050505050565b600081604051602001611e7491906137a8565b604051602081830303815290604052805190602001209050919050565b6000604182511415611ed05760008060006020850151925060408501519150606085015160001a9050611ec68682858561260d565b9350505050611f3a565b604082511415611eff576000806020840151915060408401519050611ef6858383612798565b92505050611f3a565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906139e6565b60405180910390fd5b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa790613c26565b60405180910390fd5b6000611fba611519565b9050611fdb81600087611fcc88612547565b611fd588612547565b87612358565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203a9190613dfa565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516120b8929190613c61565b60405180910390a46120cf816000878787876127e2565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d90613ae6565b60405180910390fd5b6000612150611519565b905061217081878761216188612547565b61216a88612547565b87612358565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90613b86565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122bc9190613dfa565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612339929190613c61565b60405180910390a461234f8288888888886127e2565b50505050505050565b505050505050565b61237f8473ffffffffffffffffffffffffffffffffffffffff1661149c565b1561253f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016123c59594939291906137e9565b602060405180830381600087803b1580156123df57600080fd5b505af192505050801561241057506040513d601f19601f8201168201806040525081019061240d9190613115565b60015b6124b65761241c61408e565b806308c379a014156124795750612431614710565b8061243c575061247b565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124709190613964565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad906139a6565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461253d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612534906139c6565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561258c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156125ba5781602001602082028036833780820191505090505b50905082816000815181106125f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115612675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266c90613ac6565b60405180910390fd5b601b8460ff16148061268a5750601c8460ff16145b6126c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c090613b46565b60405180910390fd5b6000600186868686604051600081526020016040526040516126ee949392919061391f565b6020604051602081039080840390855afa158015612710573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561278c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278390613986565b60405180910390fd5b80915050949350505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84169150601b8460ff1c0190506127d78682878561260d565b925050509392505050565b6128018473ffffffffffffffffffffffffffffffffffffffff1661149c565b156129c1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612847959493929190613851565b602060405180830381600087803b15801561286157600080fd5b505af192505050801561289257506040513d601f19601f8201168201806040525081019061288f9190613115565b60015b6129385761289e61408e565b806308c379a014156128fb57506128b3614710565b806128be57506128fd565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f29190613964565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292f906139a6565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b6906139c6565b60405180910390fd5b505b505050505050565b8280546129d590613f1d565b90600052602060002090601f0160209004810192826129f75760008555612a3e565b82601f10612a1057805160ff1916838001178555612a3e565b82800160010185558215612a3e579182015b82811115612a3d578251825591602001919060010190612a22565b5b509050612a4b9190612a4f565b5090565b5b80821115612a68576000816000905550600101612a50565b5090565b6000612a7f612a7a84613caf565b613c8a565b90508083825260208201905082856020860282011115612a9e57600080fd5b60005b85811015612ace5781612ab48882612bc0565b845260208401935060208301925050600181019050612aa1565b5050509392505050565b6000612aeb612ae684613cdb565b613c8a565b90508083825260208201905082856020860282011115612b0a57600080fd5b60005b85811015612b3a5781612b208882612d06565b845260208401935060208301925050600181019050612b0d565b5050509392505050565b6000612b57612b5284613d07565b613c8a565b905082815260208101848484011115612b6f57600080fd5b612b7a848285613edb565b509392505050565b6000612b95612b9084613d38565b613c8a565b905082815260208101848484011115612bad57600080fd5b612bb8848285613edb565b509392505050565b600081359050612bcf816147a6565b92915050565b600082601f830112612be657600080fd5b8135612bf6848260208601612a6c565b91505092915050565b600082601f830112612c1057600080fd5b8135612c20848260208601612ad8565b91505092915050565b600081359050612c38816147bd565b92915050565b600081359050612c4d816147d4565b92915050565b600081519050612c62816147d4565b92915050565b60008083601f840112612c7a57600080fd5b8235905067ffffffffffffffff811115612c9357600080fd5b602083019150836001820283011115612cab57600080fd5b9250929050565b600082601f830112612cc357600080fd5b8135612cd3848260208601612b44565b91505092915050565b600082601f830112612ced57600080fd5b8135612cfd848260208601612b82565b91505092915050565b600081359050612d15816147eb565b92915050565b600060208284031215612d2d57600080fd5b6000612d3b84828501612bc0565b91505092915050565b60008060408385031215612d5757600080fd5b6000612d6585828601612bc0565b9250506020612d7685828601612bc0565b9150509250929050565b600080600080600060a08688031215612d9857600080fd5b6000612da688828901612bc0565b9550506020612db788828901612bc0565b945050604086013567ffffffffffffffff811115612dd457600080fd5b612de088828901612bff565b935050606086013567ffffffffffffffff811115612dfd57600080fd5b612e0988828901612bff565b925050608086013567ffffffffffffffff811115612e2657600080fd5b612e3288828901612cb2565b9150509295509295909350565b600080600080600060a08688031215612e5757600080fd5b6000612e6588828901612bc0565b9550506020612e7688828901612bc0565b9450506040612e8788828901612d06565b9350506060612e9888828901612d06565b925050608086013567ffffffffffffffff811115612eb557600080fd5b612ec188828901612cb2565b9150509295509295909350565b600080600060608486031215612ee357600080fd5b6000612ef186828701612bc0565b935050602084013567ffffffffffffffff811115612f0e57600080fd5b612f1a86828701612bff565b925050604084013567ffffffffffffffff811115612f3757600080fd5b612f4386828701612bff565b9150509250925092565b60008060408385031215612f6057600080fd5b6000612f6e85828601612bc0565b9250506020612f7f85828601612c29565b9150509250929050565b60008060408385031215612f9c57600080fd5b6000612faa85828601612bc0565b9250506020612fbb85828601612d06565b9150509250929050565b60008060008060608587031215612fdb57600080fd5b6000612fe987828801612bc0565b9450506020612ffa87828801612d06565b935050604085013567ffffffffffffffff81111561301757600080fd5b61302387828801612c68565b925092505092959194509250565b60008060006060848603121561304657600080fd5b600061305486828701612bc0565b935050602061306586828701612d06565b925050604061307686828701612d06565b9150509250925092565b6000806040838503121561309357600080fd5b600083013567ffffffffffffffff8111156130ad57600080fd5b6130b985828601612bd5565b925050602083013567ffffffffffffffff8111156130d657600080fd5b6130e285828601612bff565b9150509250929050565b6000602082840312156130fe57600080fd5b600061310c84828501612c3e565b91505092915050565b60006020828403121561312757600080fd5b600061313584828501612c53565b91505092915050565b60006020828403121561315057600080fd5b600082013567ffffffffffffffff81111561316a57600080fd5b61317684828501612cdc565b91505092915050565b60006020828403121561319157600080fd5b600061319f84828501612d06565b91505092915050565b600080604083850312156131bb57600080fd5b60006131c985828601612d06565b925050602083013567ffffffffffffffff8111156131e657600080fd5b6131f285828601612cdc565b9150509250929050565b60006132088383613714565b60208301905092915050565b61321d81613e50565b82525050565b61323461322f82613e50565b613fc9565b82525050565b600061324582613d8e565b61324f8185613dbc565b935061325a83613d69565b8060005b8381101561328b57815161327288826131fc565b975061327d83613daf565b92505060018101905061325e565b5085935050505092915050565b6132a181613e62565b82525050565b6132b081613e6e565b82525050565b6132c76132c282613e6e565b613fdb565b82525050565b60006132d882613d99565b6132e28185613dcd565b93506132f2818560208601613eea565b6132fb816140b0565b840191505092915050565b600061331182613da4565b61331b8185613dde565b935061332b818560208601613eea565b613334816140b0565b840191505092915050565b600061334a82613da4565b6133548185613def565b9350613364818560208601613eea565b80840191505092915050565b6000815461337d81613f1d565b6133878186613def565b945060018216600081146133a257600181146133b3576133e6565b60ff198316865281860193506133e6565b6133bc85613d79565b60005b838110156133de578154818901526001820191506020810190506133bf565b838801955050505b50505092915050565b60006133fc601883613dde565b9150613407826140db565b602082019050919050565b600061341f603483613dde565b915061342a82614104565b604082019050919050565b6000613442602883613dde565b915061344d82614153565b604082019050919050565b6000613465601f83613dde565b9150613470826141a2565b602082019050919050565b6000613488601c83613def565b9150613493826141cb565b601c82019050919050565b60006134ab602b83613dde565b91506134b6826141f4565b604082019050919050565b60006134ce602683613dde565b91506134d982614243565b604082019050919050565b60006134f1602483613dde565b91506134fc82614292565b604082019050919050565b6000613514602283613dde565b915061351f826142e1565b604082019050919050565b6000613537602983613dde565b915061354282614330565b604082019050919050565b600061355a601483613dde565b91506135658261437f565b602082019050919050565b600061357d602283613dde565b9150613588826143a8565b604082019050919050565b60006135a0602583613dde565b91506135ab826143f7565b604082019050919050565b60006135c3603283613dde565b91506135ce82614446565b604082019050919050565b60006135e6601b83613dde565b91506135f182614495565b602082019050919050565b6000613609602283613dde565b9150613614826144be565b604082019050919050565b600061362c602383613dde565b91506136378261450d565b604082019050919050565b600061364f602a83613dde565b915061365a8261455c565b604082019050919050565b6000613672602083613dde565b915061367d826145ab565b602082019050919050565b6000613695602983613dde565b91506136a0826145d4565b604082019050919050565b60006136b8602983613dde565b91506136c382614623565b604082019050919050565b60006136db602883613dde565b91506136e682614672565b604082019050919050565b60006136fe602183613dde565b9150613709826146c1565b604082019050919050565b61371d81613ec4565b82525050565b61372c81613ec4565b82525050565b61374361373e82613ec4565b613ff7565b82525050565b61375281613ece565b82525050565b60006137648285613223565b6014820191506137748284613732565b6020820191508190509392505050565b6000613790828561333f565b915061379c8284613370565b91508190509392505050565b60006137b38261347b565b91506137bf82846132b6565b60208201915081905092915050565b60006020820190506137e36000830184613214565b92915050565b600060a0820190506137fe6000830188613214565b61380b6020830187613214565b818103604083015261381d818661323a565b90508181036060830152613831818561323a565b9050818103608083015261384581846132cd565b90509695505050505050565b600060a0820190506138666000830188613214565b6138736020830187613214565b6138806040830186613723565b61388d6060830185613723565b818103608083015261389f81846132cd565b90509695505050505050565b600060208201905081810360008301526138c5818461323a565b905092915050565b600060408201905081810360008301526138e7818561323a565b905081810360208301526138fb818461323a565b90509392505050565b60006020820190506139196000830184613298565b92915050565b600060808201905061393460008301876132a7565b6139416020830186613749565b61394e60408301856132a7565b61395b60608301846132a7565b95945050505050565b6000602082019050818103600083015261397e8184613306565b905092915050565b6000602082019050818103600083015261399f816133ef565b9050919050565b600060208201905081810360008301526139bf81613412565b9050919050565b600060208201905081810360008301526139df81613435565b9050919050565b600060208201905081810360008301526139ff81613458565b9050919050565b60006020820190508181036000830152613a1f8161349e565b9050919050565b60006020820190508181036000830152613a3f816134c1565b9050919050565b60006020820190508181036000830152613a5f816134e4565b9050919050565b60006020820190508181036000830152613a7f81613507565b9050919050565b60006020820190508181036000830152613a9f8161352a565b9050919050565b60006020820190508181036000830152613abf8161354d565b9050919050565b60006020820190508181036000830152613adf81613570565b9050919050565b60006020820190508181036000830152613aff81613593565b9050919050565b60006020820190508181036000830152613b1f816135b6565b9050919050565b60006020820190508181036000830152613b3f816135d9565b9050919050565b60006020820190508181036000830152613b5f816135fc565b9050919050565b60006020820190508181036000830152613b7f8161361f565b9050919050565b60006020820190508181036000830152613b9f81613642565b9050919050565b60006020820190508181036000830152613bbf81613665565b9050919050565b60006020820190508181036000830152613bdf81613688565b9050919050565b60006020820190508181036000830152613bff816136ab565b9050919050565b60006020820190508181036000830152613c1f816136ce565b9050919050565b60006020820190508181036000830152613c3f816136f1565b9050919050565b6000602082019050613c5b6000830184613723565b92915050565b6000604082019050613c766000830185613723565b613c836020830184613723565b9392505050565b6000613c94613ca5565b9050613ca08282613f4f565b919050565b6000604051905090565b600067ffffffffffffffff821115613cca57613cc961405f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613cf657613cf561405f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d2257613d2161405f565b5b613d2b826140b0565b9050602081019050919050565b600067ffffffffffffffff821115613d5357613d5261405f565b5b613d5c826140b0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e0582613ec4565b9150613e1083613ec4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4557613e44614001565b5b828201905092915050565b6000613e5b82613ea4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613f08578082015181840152602081019050613eed565b83811115613f17576000848401525b50505050565b60006002820490506001821680613f3557607f821691505b60208210811415613f4957613f48614030565b5b50919050565b613f58826140b0565b810181811067ffffffffffffffff82111715613f7757613f7661405f565b5b80604052505050565b6000613f8b82613ec4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fbe57613fbd614001565b5b600182019050919050565b6000613fd482613fe5565b9050919050565b6000819050919050565b6000613ff0826140c1565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156140ad5760046000803e6140aa6000516140ce565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f63616e277420757365207468652073616d65207369676e61747572652074776960008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f43616c6c657220686173206e6f207469636b6574000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5369676e6174757265206661696c656420746f207265636f7665720000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614720576147a3565b614728613ca5565b60043d036004823e80513d602482011167ffffffffffffffff821117156147505750506147a3565b808201805167ffffffffffffffff81111561476e57505050506147a3565b80602083010160043d03850181111561478b5750505050506147a3565b61479a82602001850186613f4f565b82955050505050505b90565b6147af81613e50565b81146147ba57600080fd5b50565b6147c681613e62565b81146147d157600080fd5b50565b6147dd81613e78565b81146147e857600080fd5b50565b6147f481613ec4565b81146147ff57600080fd5b5056fea2646970667358221220657f8fa7d15756922f67a6f80379d9cfdfc78b0fd5580f380e21c89228deab0064736f6c6343000803003368747470733a2f2f6e696674792d69736c616e642d73776f72642d64726f702d7075626c69632e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f0000000000000000000000002866afb60a4983e1f94ac20f5143b47b91f3d254000000000000000000000000551c35b33fe0ef9fc99308de4c867ed1d020c589

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101415760003560e01c80637e5b1e24116100b8578063a7ecd37e1161007c578063a7ecd37e1461034a578063e8a3d48514610366578063e985e9c514610384578063f242432a146103b4578063f2fde38b146103d0578063f5298aca146103ec57610141565b80637e5b1e24146102bc5780638da5cb5b146102d8578063931688cb146102f657806394d008ef14610312578063a22cb4651461032e57610141565b806353c8388e1161010a57806353c8388e146102225780636914db601461023e5780636b20c4541461026e5780636c0360eb1461028a578063715018a6146102a857806372998ce4146102b257610141565b8062fdd58e1461014657806301ffc9a7146101765780630e89341c146101a65780632eb2c2d6146101d65780634e1273f4146101f2575b600080fd5b610160600480360381019061015b9190612f89565b610408565b60405161016d9190613c46565b60405180910390f35b610190600480360381019061018b91906130ec565b6104d1565b60405161019d9190613904565b60405180910390f35b6101c060048036038101906101bb919061317f565b6105b3565b6040516101cd9190613964565b60405180910390f35b6101f060048036038101906101eb9190612d80565b61061c565b005b61020c60048036038101906102079190613080565b6106bd565b60405161021991906138ab565b60405180910390f35b61023c600480360381019061023791906131a8565b61086e565b005b6102586004803603810190610253919061317f565b610916565b6040516102659190613964565b60405180910390f35b61028860048036038101906102839190612ece565b6109b6565b005b610292610a53565b60405161029f9190613964565b60405180910390f35b6102b0610ae5565b005b6102ba610b6d565b005b6102d660048036038101906102d1919061313e565b610c00565b005b6102e0610c96565b6040516102ed91906137ce565b60405180910390f35b610310600480360381019061030b919061313e565b610cc0565b005b61032c60048036038101906103279190612fc5565b610d56565b005b61034860048036038101906103439190612f4d565b610f3b565b005b610364600480360381019061035f9190612d1b565b6110bc565b005b61036e61117c565b60405161037b9190613964565b60405180910390f35b61039e60048036038101906103999190612d44565b6111d2565b6040516103ab9190613904565b60405180910390f35b6103ce60048036038101906103c99190612e3f565b611266565b005b6103ea60048036038101906103e59190612d1b565b611307565b005b61040660048036038101906104019190613031565b6113ff565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047090613a06565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105ac57506105ab826114af565b5b9050919050565b606060006105bf610a53565b905060008151116105df5760405180602001604052806000815250610614565b8060076000858152602001908152602001600020604051602001610604929190613784565b6040516020818303038152906040525b915050919050565b610624611519565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061066a575061066985610664611519565b6111d2565b5b6106a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a090613b06565b60405180910390fd5b6106b68585858585611521565b5050505050565b60608151835114610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90613be6565b60405180910390fd5b6000835167ffffffffffffffff811115610746577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107745781602001602082028036833780820191505090505b50905060005b84518110156108635761080d8582815181106107bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610800577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610408565b828281518110610846577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061085c90613f80565b905061077a565b508091505092915050565b610876611519565b73ffffffffffffffffffffffffffffffffffffffff16610894610c96565b73ffffffffffffffffffffffffffffffffffffffff16146108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190613ba6565b60405180910390fd5b806007600084815260200190815260200160002090805190602001906109119291906129c9565b505050565b6007602052806000526040600020600091509050805461093590613f1d565b80601f016020809104026020016040519081016040528092919081815260200182805461096190613f1d565b80156109ae5780601f10610983576101008083540402835291602001916109ae565b820191906000526020600020905b81548152906001019060200180831161099157829003601f168201915b505050505081565b6109be611519565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a045750610a03836109fe611519565b6111d2565b5b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90613a86565b60405180910390fd5b610a4e838383611881565b505050565b606060058054610a6290613f1d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8e90613f1d565b8015610adb5780601f10610ab057610100808354040283529160200191610adb565b820191906000526020600020905b815481529060010190602001808311610abe57829003601f168201915b5050505050905090565b610aed611519565b73ffffffffffffffffffffffffffffffffffffffff16610b0b610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890613ba6565b60405180910390fd5b610b6b6000611b7e565b565b6001610b7a336001610408565b1015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613aa6565b60405180910390fd5b610bc733600180611c44565b7f399be8ae94de99e97bd761c26218c6834a58d80b3e774ef494986a406fb546d333604051610bf691906137ce565b60405180910390a1565b610c08611519565b73ffffffffffffffffffffffffffffffffffffffff16610c26610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390613ba6565b60405180910390fd5b8060069080519060200190610c929291906129c9565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cc8611519565b73ffffffffffffffffffffffffffffffffffffffff16610ce6610c96565b73ffffffffffffffffffffffffffffffffffffffff1614610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613ba6565b60405180910390fd5b8060059080519060200190610d529291906129c9565b5050565b600015156008600085815260200190815260200160002060009054906101000a900460ff16151514610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490613a66565b60405180910390fd5b60016008600085815260200190815260200160002060006101000a81548160ff0219169083151502179055506000610e1c8585604051602001610e01929190613758565b60405160208183030381529060405280519060200120611e61565b9050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ea58285858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611e91565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613b26565b60405180910390fd5b610f18856000600160405180602001604052806000815250611f40565b610f348560018060405180602001604052806000815250611f40565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff16610f5a611519565b73ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890613bc6565b60405180910390fd5b8060016000610fbe611519565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661106b611519565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110b09190613904565b60405180910390a35050565b6110c4611519565b73ffffffffffffffffffffffffffffffffffffffff166110e2610c96565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613ba6565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000611188610a53565b905060008151116111a857604051806020016040528060008152506111cc565b8060066040516020016111bc929190613784565b6040516020818303038152906040525b91505090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61126e611519565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112b457506112b3856112ae611519565b6111d2565b5b6112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90613a86565b60405180910390fd5b61130085858585856120d6565b5050505050565b61130f611519565b73ffffffffffffffffffffffffffffffffffffffff1661132d610c96565b73ffffffffffffffffffffffffffffffffffffffff1614611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613ba6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90613a26565b60405180910390fd5b6113fc81611b7e565b50565b611407611519565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061144d575061144c83611447611519565b6111d2565b5b61148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390613a86565b60405180910390fd5b611497838383611c44565b505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90613c06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613ae6565b60405180910390fd5b60006115df611519565b90506115ef818787878787612358565b60005b84518110156117ec576000858281518110611636577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061167b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390613b86565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117d19190613dfa565b92505081905550505050806117e590613f80565b90506115f2565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118639291906138cd565b60405180910390a4611879818787878787612360565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613b66565b60405180910390fd5b8051825114611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613c06565b60405180910390fd5b600061193f611519565b905061195f81856000868660405180602001604052806000815250612358565b60005b8351811015611af85760008482815181106119a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106119eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613a46565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611af090613f80565b915050611962565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611b709291906138cd565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613b66565b60405180910390fd5b6000611cbe611519565b9050611cee81856000611cd087612547565b611cd987612547565b60405180602001604052806000815250612358565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90613a46565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611e52929190613c61565b60405180910390a45050505050565b600081604051602001611e7491906137a8565b604051602081830303815290604052805190602001209050919050565b6000604182511415611ed05760008060006020850151925060408501519150606085015160001a9050611ec68682858561260d565b9350505050611f3a565b604082511415611eff576000806020840151915060408401519050611ef6858383612798565b92505050611f3a565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906139e6565b60405180910390fd5b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa790613c26565b60405180910390fd5b6000611fba611519565b9050611fdb81600087611fcc88612547565b611fd588612547565b87612358565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203a9190613dfa565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516120b8929190613c61565b60405180910390a46120cf816000878787876127e2565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d90613ae6565b60405180910390fd5b6000612150611519565b905061217081878761216188612547565b61216a88612547565b87612358565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90613b86565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122bc9190613dfa565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612339929190613c61565b60405180910390a461234f8288888888886127e2565b50505050505050565b505050505050565b61237f8473ffffffffffffffffffffffffffffffffffffffff1661149c565b1561253f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016123c59594939291906137e9565b602060405180830381600087803b1580156123df57600080fd5b505af192505050801561241057506040513d601f19601f8201168201806040525081019061240d9190613115565b60015b6124b65761241c61408e565b806308c379a014156124795750612431614710565b8061243c575061247b565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124709190613964565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad906139a6565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461253d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612534906139c6565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561258c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156125ba5781602001602082028036833780820191505090505b50905082816000815181106125f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115612675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266c90613ac6565b60405180910390fd5b601b8460ff16148061268a5750601c8460ff16145b6126c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c090613b46565b60405180910390fd5b6000600186868686604051600081526020016040526040516126ee949392919061391f565b6020604051602081039080840390855afa158015612710573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561278c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278390613986565b60405180910390fd5b80915050949350505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84169150601b8460ff1c0190506127d78682878561260d565b925050509392505050565b6128018473ffffffffffffffffffffffffffffffffffffffff1661149c565b156129c1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612847959493929190613851565b602060405180830381600087803b15801561286157600080fd5b505af192505050801561289257506040513d601f19601f8201168201806040525081019061288f9190613115565b60015b6129385761289e61408e565b806308c379a014156128fb57506128b3614710565b806128be57506128fd565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f29190613964565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292f906139a6565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b6906139c6565b60405180910390fd5b505b505050505050565b8280546129d590613f1d565b90600052602060002090601f0160209004810192826129f75760008555612a3e565b82601f10612a1057805160ff1916838001178555612a3e565b82800160010185558215612a3e579182015b82811115612a3d578251825591602001919060010190612a22565b5b509050612a4b9190612a4f565b5090565b5b80821115612a68576000816000905550600101612a50565b5090565b6000612a7f612a7a84613caf565b613c8a565b90508083825260208201905082856020860282011115612a9e57600080fd5b60005b85811015612ace5781612ab48882612bc0565b845260208401935060208301925050600181019050612aa1565b5050509392505050565b6000612aeb612ae684613cdb565b613c8a565b90508083825260208201905082856020860282011115612b0a57600080fd5b60005b85811015612b3a5781612b208882612d06565b845260208401935060208301925050600181019050612b0d565b5050509392505050565b6000612b57612b5284613d07565b613c8a565b905082815260208101848484011115612b6f57600080fd5b612b7a848285613edb565b509392505050565b6000612b95612b9084613d38565b613c8a565b905082815260208101848484011115612bad57600080fd5b612bb8848285613edb565b509392505050565b600081359050612bcf816147a6565b92915050565b600082601f830112612be657600080fd5b8135612bf6848260208601612a6c565b91505092915050565b600082601f830112612c1057600080fd5b8135612c20848260208601612ad8565b91505092915050565b600081359050612c38816147bd565b92915050565b600081359050612c4d816147d4565b92915050565b600081519050612c62816147d4565b92915050565b60008083601f840112612c7a57600080fd5b8235905067ffffffffffffffff811115612c9357600080fd5b602083019150836001820283011115612cab57600080fd5b9250929050565b600082601f830112612cc357600080fd5b8135612cd3848260208601612b44565b91505092915050565b600082601f830112612ced57600080fd5b8135612cfd848260208601612b82565b91505092915050565b600081359050612d15816147eb565b92915050565b600060208284031215612d2d57600080fd5b6000612d3b84828501612bc0565b91505092915050565b60008060408385031215612d5757600080fd5b6000612d6585828601612bc0565b9250506020612d7685828601612bc0565b9150509250929050565b600080600080600060a08688031215612d9857600080fd5b6000612da688828901612bc0565b9550506020612db788828901612bc0565b945050604086013567ffffffffffffffff811115612dd457600080fd5b612de088828901612bff565b935050606086013567ffffffffffffffff811115612dfd57600080fd5b612e0988828901612bff565b925050608086013567ffffffffffffffff811115612e2657600080fd5b612e3288828901612cb2565b9150509295509295909350565b600080600080600060a08688031215612e5757600080fd5b6000612e6588828901612bc0565b9550506020612e7688828901612bc0565b9450506040612e8788828901612d06565b9350506060612e9888828901612d06565b925050608086013567ffffffffffffffff811115612eb557600080fd5b612ec188828901612cb2565b9150509295509295909350565b600080600060608486031215612ee357600080fd5b6000612ef186828701612bc0565b935050602084013567ffffffffffffffff811115612f0e57600080fd5b612f1a86828701612bff565b925050604084013567ffffffffffffffff811115612f3757600080fd5b612f4386828701612bff565b9150509250925092565b60008060408385031215612f6057600080fd5b6000612f6e85828601612bc0565b9250506020612f7f85828601612c29565b9150509250929050565b60008060408385031215612f9c57600080fd5b6000612faa85828601612bc0565b9250506020612fbb85828601612d06565b9150509250929050565b60008060008060608587031215612fdb57600080fd5b6000612fe987828801612bc0565b9450506020612ffa87828801612d06565b935050604085013567ffffffffffffffff81111561301757600080fd5b61302387828801612c68565b925092505092959194509250565b60008060006060848603121561304657600080fd5b600061305486828701612bc0565b935050602061306586828701612d06565b925050604061307686828701612d06565b9150509250925092565b6000806040838503121561309357600080fd5b600083013567ffffffffffffffff8111156130ad57600080fd5b6130b985828601612bd5565b925050602083013567ffffffffffffffff8111156130d657600080fd5b6130e285828601612bff565b9150509250929050565b6000602082840312156130fe57600080fd5b600061310c84828501612c3e565b91505092915050565b60006020828403121561312757600080fd5b600061313584828501612c53565b91505092915050565b60006020828403121561315057600080fd5b600082013567ffffffffffffffff81111561316a57600080fd5b61317684828501612cdc565b91505092915050565b60006020828403121561319157600080fd5b600061319f84828501612d06565b91505092915050565b600080604083850312156131bb57600080fd5b60006131c985828601612d06565b925050602083013567ffffffffffffffff8111156131e657600080fd5b6131f285828601612cdc565b9150509250929050565b60006132088383613714565b60208301905092915050565b61321d81613e50565b82525050565b61323461322f82613e50565b613fc9565b82525050565b600061324582613d8e565b61324f8185613dbc565b935061325a83613d69565b8060005b8381101561328b57815161327288826131fc565b975061327d83613daf565b92505060018101905061325e565b5085935050505092915050565b6132a181613e62565b82525050565b6132b081613e6e565b82525050565b6132c76132c282613e6e565b613fdb565b82525050565b60006132d882613d99565b6132e28185613dcd565b93506132f2818560208601613eea565b6132fb816140b0565b840191505092915050565b600061331182613da4565b61331b8185613dde565b935061332b818560208601613eea565b613334816140b0565b840191505092915050565b600061334a82613da4565b6133548185613def565b9350613364818560208601613eea565b80840191505092915050565b6000815461337d81613f1d565b6133878186613def565b945060018216600081146133a257600181146133b3576133e6565b60ff198316865281860193506133e6565b6133bc85613d79565b60005b838110156133de578154818901526001820191506020810190506133bf565b838801955050505b50505092915050565b60006133fc601883613dde565b9150613407826140db565b602082019050919050565b600061341f603483613dde565b915061342a82614104565b604082019050919050565b6000613442602883613dde565b915061344d82614153565b604082019050919050565b6000613465601f83613dde565b9150613470826141a2565b602082019050919050565b6000613488601c83613def565b9150613493826141cb565b601c82019050919050565b60006134ab602b83613dde565b91506134b6826141f4565b604082019050919050565b60006134ce602683613dde565b91506134d982614243565b604082019050919050565b60006134f1602483613dde565b91506134fc82614292565b604082019050919050565b6000613514602283613dde565b915061351f826142e1565b604082019050919050565b6000613537602983613dde565b915061354282614330565b604082019050919050565b600061355a601483613dde565b91506135658261437f565b602082019050919050565b600061357d602283613dde565b9150613588826143a8565b604082019050919050565b60006135a0602583613dde565b91506135ab826143f7565b604082019050919050565b60006135c3603283613dde565b91506135ce82614446565b604082019050919050565b60006135e6601b83613dde565b91506135f182614495565b602082019050919050565b6000613609602283613dde565b9150613614826144be565b604082019050919050565b600061362c602383613dde565b91506136378261450d565b604082019050919050565b600061364f602a83613dde565b915061365a8261455c565b604082019050919050565b6000613672602083613dde565b915061367d826145ab565b602082019050919050565b6000613695602983613dde565b91506136a0826145d4565b604082019050919050565b60006136b8602983613dde565b91506136c382614623565b604082019050919050565b60006136db602883613dde565b91506136e682614672565b604082019050919050565b60006136fe602183613dde565b9150613709826146c1565b604082019050919050565b61371d81613ec4565b82525050565b61372c81613ec4565b82525050565b61374361373e82613ec4565b613ff7565b82525050565b61375281613ece565b82525050565b60006137648285613223565b6014820191506137748284613732565b6020820191508190509392505050565b6000613790828561333f565b915061379c8284613370565b91508190509392505050565b60006137b38261347b565b91506137bf82846132b6565b60208201915081905092915050565b60006020820190506137e36000830184613214565b92915050565b600060a0820190506137fe6000830188613214565b61380b6020830187613214565b818103604083015261381d818661323a565b90508181036060830152613831818561323a565b9050818103608083015261384581846132cd565b90509695505050505050565b600060a0820190506138666000830188613214565b6138736020830187613214565b6138806040830186613723565b61388d6060830185613723565b818103608083015261389f81846132cd565b90509695505050505050565b600060208201905081810360008301526138c5818461323a565b905092915050565b600060408201905081810360008301526138e7818561323a565b905081810360208301526138fb818461323a565b90509392505050565b60006020820190506139196000830184613298565b92915050565b600060808201905061393460008301876132a7565b6139416020830186613749565b61394e60408301856132a7565b61395b60608301846132a7565b95945050505050565b6000602082019050818103600083015261397e8184613306565b905092915050565b6000602082019050818103600083015261399f816133ef565b9050919050565b600060208201905081810360008301526139bf81613412565b9050919050565b600060208201905081810360008301526139df81613435565b9050919050565b600060208201905081810360008301526139ff81613458565b9050919050565b60006020820190508181036000830152613a1f8161349e565b9050919050565b60006020820190508181036000830152613a3f816134c1565b9050919050565b60006020820190508181036000830152613a5f816134e4565b9050919050565b60006020820190508181036000830152613a7f81613507565b9050919050565b60006020820190508181036000830152613a9f8161352a565b9050919050565b60006020820190508181036000830152613abf8161354d565b9050919050565b60006020820190508181036000830152613adf81613570565b9050919050565b60006020820190508181036000830152613aff81613593565b9050919050565b60006020820190508181036000830152613b1f816135b6565b9050919050565b60006020820190508181036000830152613b3f816135d9565b9050919050565b60006020820190508181036000830152613b5f816135fc565b9050919050565b60006020820190508181036000830152613b7f8161361f565b9050919050565b60006020820190508181036000830152613b9f81613642565b9050919050565b60006020820190508181036000830152613bbf81613665565b9050919050565b60006020820190508181036000830152613bdf81613688565b9050919050565b60006020820190508181036000830152613bff816136ab565b9050919050565b60006020820190508181036000830152613c1f816136ce565b9050919050565b60006020820190508181036000830152613c3f816136f1565b9050919050565b6000602082019050613c5b6000830184613723565b92915050565b6000604082019050613c766000830185613723565b613c836020830184613723565b9392505050565b6000613c94613ca5565b9050613ca08282613f4f565b919050565b6000604051905090565b600067ffffffffffffffff821115613cca57613cc961405f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613cf657613cf561405f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d2257613d2161405f565b5b613d2b826140b0565b9050602081019050919050565b600067ffffffffffffffff821115613d5357613d5261405f565b5b613d5c826140b0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e0582613ec4565b9150613e1083613ec4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4557613e44614001565b5b828201905092915050565b6000613e5b82613ea4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613f08578082015181840152602081019050613eed565b83811115613f17576000848401525b50505050565b60006002820490506001821680613f3557607f821691505b60208210811415613f4957613f48614030565b5b50919050565b613f58826140b0565b810181811067ffffffffffffffff82111715613f7757613f7661405f565b5b80604052505050565b6000613f8b82613ec4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fbe57613fbd614001565b5b600182019050919050565b6000613fd482613fe5565b9050919050565b6000819050919050565b6000613ff0826140c1565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156140ad5760046000803e6140aa6000516140ce565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f63616e277420757365207468652073616d65207369676e61747572652074776960008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f43616c6c657220686173206e6f207469636b6574000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5369676e6174757265206661696c656420746f207265636f7665720000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614720576147a3565b614728613ca5565b60043d036004823e80513d602482011167ffffffffffffffff821117156147505750506147a3565b808201805167ffffffffffffffff81111561476e57505050506147a3565b80602083010160043d03850181111561478b5750505050506147a3565b61479a82602001850186613f4f565b82955050505050505b90565b6147af81613e50565b81146147ba57600080fd5b50565b6147c681613e62565b81146147d157600080fd5b50565b6147dd81613e78565b81146147e857600080fd5b50565b6147f481613ec4565b81146147ff57600080fd5b5056fea2646970667358221220657f8fa7d15756922f67a6f80379d9cfdfc78b0fd5580f380e21c89228deab0064736f6c63430008030033

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

0000000000000000000000002866afb60a4983e1f94ac20f5143b47b91f3d254000000000000000000000000551c35b33fe0ef9fc99308de4c867ed1d020c589

-----Decoded View---------------
Arg [0] : signer (address): 0x2866aFB60a4983e1f94ac20F5143B47B91f3d254
Arg [1] : initialBatchTo (address): 0x551C35b33FE0Ef9fc99308De4C867eD1D020c589

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000002866afb60a4983e1f94ac20f5143b47b91f3d254
Arg [1] : 000000000000000000000000551c35b33fe0ef9fc99308de4c867ed1d020c589


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.