ETH Price: $3,268.84 (+4.66%)
Gas: 2 Gwei

Token

 

Overview

Max Total Supply

53

Holders

34

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
freshestkicks.eth
0xc7d2219291c9da4f183074cd7ed210f32ca217ed
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Fragile

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-13
*/

//SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.7.1;

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

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


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

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

/**
 * @dev _Available since v3.1._
 */
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver {
    constructor() {
        _registerInterface(
            ERC1155Receiver(0).onERC1155Received.selector ^
            ERC1155Receiver(0).onERC1155BatchReceived.selector
        );
    }
}


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


/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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 ()  {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 *
 * @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 SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

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

    /*
     *     bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e
     *     bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a
     *     bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6
     *
     *     => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^
     *        0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26
     */
    bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26;

    /*
     *     bytes4(keccak256('uri(uint256)')) == 0x0e89341c
     */
    bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c;

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

        // register the supported interfaces to conform to ERC1155 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155);

        // register the supported interfaces to conform to ERC1155MetadataURI via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI);
    }

    /**
     * @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 tokenId) external view 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 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
        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) {
            require(accounts[i] != address(0), "ERC1155: batch balance query for the zero address");
            batchBalances[i] = _balances[ids[i]][accounts[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 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(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        address operator = _msgSender();

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

        _balances[id][from] = _balances[id][from].sub(amount, "ERC1155: insufficient balance for transfer");
        _balances[id][to] = _balances[id][to].add(amount);

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

        _doSafeTransferAcceptanceCheck(operator, 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(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

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

            _balances[id][from] = _balances[id][from].sub(
                amount,
                "ERC1155: insufficient balance for transfer"
            );
            _balances[id][to] = _balances[id][to].add(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 `to` 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] = _balances[id][account].add(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 (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] = amounts[i].add(_balances[ids[i]][to]);
        }

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

        _balances[id][account] = _balances[id][account].sub(
            amount,
            "ERC1155: burn amount exceeds balance"
        );

        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 (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][account] = _balances[ids[i]][account].sub(
                amounts[i],
                "ERC1155: burn amount exceeds balance"
            );
        }

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

interface IERC721 {

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);
}

contract Fragile is ERC1155,Ownable(){

    IERC721 MembershipToken;
    uint256 public maxSupply;
    uint256 public currentSupply;
    uint256 public basePrice;
    address public artist;
    address public nightkids;
    bool public sale; 
    mapping(uint256 => uint256) public usedMembershipToken;

    event NftBought(address indexed, uint256 tokenId, uint256 memberShipTokenId);


    constructor()  ERC1155("https://gateway.pinata.cloud/ipfs/QmP895sGDCRTun1DExxY1mKRfiP5G8yiSqCdJ1t8CzHSTd") {
        MembershipToken = IERC721(0x83b7261DB8c795701C6fc86D1fcd073ece940E10);
        maxSupply = 5555;
        currentSupply = 0;
        basePrice = 0.02 ether;
        artist = 0x606E6327Fde0A5E8DE72292e9e2A4db9ca002873;
        nightkids = 0xf34BE168d52AE51c9f109F026A2CED9fdC63D3c4;

        sale = false;
    }
    
      function PublicSale(uint256[] memory tokenId,uint256 amount)
        public
        payable 
    {
        require(currentSupply <= maxSupply,"ERROR: max limit reached");
        require(amount <= 20 && tokenId.length <= 20,"ERROR: max 20 mint per transaction");
        require(amount <= MembershipToken.balanceOf(msg.sender),"ERROR: not enough MembershipToken");
        require(amount == tokenId.length,"ERROR: wrong token ID or count");
        require(msg.value >= amount*basePrice,"ERROR: wrong price");
        require(sale,"ERROR: not on sale");

        require(amount <= MembershipToken.balanceOf(msg.sender),"ERROR: not enough MembershipToken");
        for(uint256 i=0; i<tokenId.length; i++){
            require(msg.sender == MembershipToken.ownerOf(tokenId[i]),"ERROR: u don't have this token ID");
            if(usedMembershipToken[tokenId[i]] != 0) require(usedMembershipToken[tokenId[i]] <= block.timestamp ,"ERROR: this Membership Token is already used");
                emit NftBought(msg.sender,amount,tokenId[i]);
        }

        _mint(msg.sender, 0, amount, "");
        currentSupply += amount;
            
    }

    function buyWithoutMemberShip(uint256 amount) public payable {
        require(currentSupply <= maxSupply,"ERROR: max limit reached");    
        require(msg.value >= amount*0.04 ether,"ERROR: wrong price");
        require(sale,"ERROR: not on sale");

        _mint(msg.sender, 0, amount, "");
        currentSupply += amount;

    }

    function withdraw() public onlyOwner {
        uint amount = address(this).balance;
        payable(artist).transfer(amount*80/100);
        payable(nightkids).transfer(amount*20/100);
    }

    function unLockSale() public onlyOwner {
        sale = true;
    }

    function lockSale() public onlyOwner {
        sale = false;
    }
    
    function changeTokenUri(string memory _newUri) public onlyOwner {
        _setURI(_newUri);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"memberShipTokenId","type":"uint256"}],"name":"NftBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"artist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyWithoutMemberShip","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"changeTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"lockSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nightkids","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unLockSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedMembershipToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060800160405280605081526020016200401860509139620000446301ffc9a760e01b6200027660201b60201c565b62000055816200037f60201b60201c565b6200006d63d9b67a2660e01b6200027660201b60201c565b62000085630e89341c60e01b6200027660201b60201c565b506000620000986200039b60201b60201c565b905080600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3507383b7261db8c795701c6fc86d1fcd073ece940e10600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506115b3600681905550600060078190555066470de4df82000060088190555073606e6327fde0a5e8de72292e9e2a4db9ca002873600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f34be168d52ae51c9f109f026a2ced9fdc63d3c4600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60146101000a81548160ff02191690831515021790555062000459565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b806003908051906020019062000397929190620003a3565b5050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003db576000855562000427565b82601f10620003f657805160ff191683800117855562000427565b8280016001018555821562000427579182015b828111156200042657825182559160200191906001019062000409565b5b5090506200043691906200043a565b5090565b5b80821115620004555760008160009055506001016200043b565b5090565b613baf80620004696000396000f3fe60806040526004361061014a5760003560e01c8063771282f6116100b6578063c7876ea41161006f578063c7876ea414610a6d578063d5abeb0114610a98578063e985e9c514610ac3578063eddf832114610b4a578063f242432a14610b78578063f2fde38b14610c945761014a565b8063771282f614610803578063884e53ad1461082e5780638da5cb5b14610845578063a20e08ca14610886578063a22cb4651461094e578063bad7c42c146109ab5761014a565b806343bc16121161010857806343bc1612146105405780634e1273f41461058157806360bd19e21461072f578063635a25c2146107705780636ad1fe02146107bf578063715018a6146107ec5761014a565b8062fdd58e1461014f57806301ffc9a7146101be57806307c60dac1461022e5780630e89341c146102455780632eb2c2d6146102f95780633ccfd60b14610529575b600080fd5b34801561015b57600080fd5b506101a86004803603604081101561017257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ce5565b6040518082815260200191505060405180910390f35b3480156101ca57600080fd5b50610216600480360360208110156101e157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610dc5565b60405180821515815260200191505060405180910390f35b34801561023a57600080fd5b50610243610e2c565b005b34801561025157600080fd5b5061027e6004803603602081101561026857600080fd5b8101908080359060200190929190505050610f13565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102be5780820151818401526020810190506102a3565b50505050905090810190601f1680156102eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030557600080fd5b50610527600480360360a081101561031c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561037957600080fd5b82018360208201111561038b57600080fd5b803590602001918460208302840111640100000000831117156103ad57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561040d57600080fd5b82018360208201111561041f57600080fd5b8035906020019184602083028401116401000000008311171561044157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156104a157600080fd5b8201836020820111156104b357600080fd5b803590602001918460018302840111640100000000831117156104d557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610fb7565b005b34801561053557600080fd5b5061053e611442565b005b34801561054c57600080fd5b50610555611600565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561058d57600080fd5b506106d8600480360360408110156105a457600080fd5b81019080803590602001906401000000008111156105c157600080fd5b8201836020820111156105d357600080fd5b803590602001918460208302840111640100000000831117156105f557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561065557600080fd5b82018360208201111561066757600080fd5b8035906020019184602083028401116401000000008311171561068957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611626565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561071b578082015181840152602081019050610700565b505050509050019250505060405180910390f35b34801561073b57600080fd5b50610744611818565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077c57600080fd5b506107a96004803603602081101561079357600080fd5b810190808035906020019092919050505061183e565b6040518082815260200191505060405180910390f35b3480156107cb57600080fd5b506107d4611856565b60405180821515815260200191505060405180910390f35b3480156107f857600080fd5b50610801611869565b005b34801561080f57600080fd5b506108186119f4565b6040518082815260200191505060405180910390f35b34801561083a57600080fd5b506108436119fa565b005b34801561085157600080fd5b5061085a611ae1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089257600080fd5b5061094c600480360360208110156108a957600080fd5b81019080803590602001906401000000008111156108c657600080fd5b8201836020820111156108d857600080fd5b803590602001918460018302840111640100000000831117156108fa57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611b0b565b005b34801561095a57600080fd5b506109a96004803603604081101561097157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611be1565b005b610a6b600480360360408110156109c157600080fd5b81019080803590602001906401000000008111156109de57600080fd5b8201836020820111156109f057600080fd5b80359060200191846020830284011164010000000083111715610a1257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611d7a565b005b348015610a7957600080fd5b50610a826124ab565b6040518082815260200191505060405180910390f35b348015610aa457600080fd5b50610aad6124b1565b6040518082815260200191505060405180910390f35b348015610acf57600080fd5b50610b3260048036036040811015610ae657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124b7565b60405180821515815260200191505060405180910390f35b610b7660048036036020811015610b6057600080fd5b810190808035906020019092919050505061254b565b005b348015610b8457600080fd5b50610c92600480360360a0811015610b9b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610c0c57600080fd5b820183602082011115610c1e57600080fd5b80359060200191846001830284011164010000000083111715610c4057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506126f5565b005b348015610ca057600080fd5b50610ce360048036036020811015610cb757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a6a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613923602b913960400191505060405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b610e34612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fab5780601f10610f8057610100808354040283529160200191610fab565b820191906000526020600020905b815481529060010190602001808311610f8e57829003601f168201915b50505050509050919050565b8151835114611011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613b316028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611097576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613a1b6025913960400191505060405180910390fd5b61109f612c7a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110e557506110e4856110df612c7a565b6124b7565b5b61113a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613a406032913960400191505060405180910390fd5b6000611144612c7a565b9050611154818787878787612c82565b60005b845181101561132557600085828151811061116e57fe5b60200260200101519050600085838151811061118657fe5b6020026020010151905061120d816040518060600160405280602a8152602001613a72602a91396001600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c8a9092919063ffffffff16565b6001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112c4816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d4a90919063ffffffff16565b6001600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050806001019050611157565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156113d55780820151818401526020810190506113ba565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156114175780820151818401526020810190506113fc565b5050505090500194505050505060405180910390a461143a818787878787612dd2565b505050505050565b61144a612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064605084028161155a57fe5b049081150290604051600060405180830381858888f19350505050158015611586573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460148402816115d057fe5b049081150290604051600060405180830381858888f193505050501580156115fc573d6000803e3d6000fd5b5050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60608151835114611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613b086029913960400191505060405180910390fd5b6000835167ffffffffffffffff8111801561169c57600080fd5b506040519080825280602002602001820160405280156116cb5781602001602082028036833780820191505090505b50905060005b845181101561180d57600073ffffffffffffffffffffffffffffffffffffffff168582815181106116fe57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061394e6031913960400191505060405180910390fd5b6001600085838151811061178357fe5b6020026020010151815260200190815260200160002060008683815181106117a757fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548282815181106117f657fe5b6020026020010181815250508060010190506116d1565b508091505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b6020528060005260406000206000915090505481565b600a60149054906101000a900460ff1681565b611871612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611933576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b611a02612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ac4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b13612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bd5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611bde81613161565b50565b8173ffffffffffffffffffffffffffffffffffffffff16611c00612c7a565b73ffffffffffffffffffffffffffffffffffffffff161415611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613adf6029913960400191505060405180910390fd5b8060026000611c7a612c7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d27612c7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6006546007541115611df4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4552524f523a206d6178206c696d69742072656163686564000000000000000081525060200191505060405180910390fd5b60148111158015611e0757506014825111155b611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613abd6022913960400191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611ee557600080fd5b505afa158015611ef9573d6000803e3d6000fd5b505050506040513d6020811015611f0f57600080fd5b8101908080519060200190929190505050811115611f78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806139a56021913960400191505060405180910390fd5b81518114611fee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552524f523a2077726f6e6720746f6b656e204944206f7220636f756e74000081525060200191505060405180910390fd5b6008548102341015612068576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a2077726f6e67207072696365000000000000000000000000000081525060200191505060405180910390fd5b600a60149054906101000a900460ff166120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a206e6f74206f6e2073616c65000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561217357600080fd5b505afa158015612187573d6000803e3d6000fd5b505050506040513d602081101561219d57600080fd5b8101908080519060200190929190505050811115612206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806139a56021913960400191505060405180910390fd5b60005b825181101561247a57600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e84838151811061225c57fe5b60200260200101516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561229857600080fd5b505afa1580156122ac573d6000803e3d6000fd5b505050506040513d60208110156122c257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612356576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a9c6021913960400191505060405180910390fd5b6000600b600085848151811061236857fe5b6020026020010151815260200190815260200160002054146124045742600b600085848151811061239557fe5b60200260200101518152602001908152602001600020541115612403576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806139ef602c913960400191505060405180910390fd5b5b3373ffffffffffffffffffffffffffffffffffffffff167f6cde4ed53ecc43e1126a8b2b9e8ad2f4ec18d9f7834636ed981cfa61960be3708385848151811061244957fe5b6020026020010151604051808381526020018281526020019250505060405180910390a28080600101915050612209565b50612497336000836040518060200160405280600081525061317b565b806007600082825401925050819055505050565b60085481565b60065481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60065460075411156125c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4552524f523a206d6178206c696d69742072656163686564000000000000000081525060200191505060405180910390fd5b668e1bc9bf0400008102341015612644576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a2077726f6e67207072696365000000000000000000000000000081525060200191505060405180910390fd5b600a60149054906101000a900460ff166126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a206e6f74206f6e2073616c65000000000000000000000000000081525060200191505060405180910390fd5b6126e2336000836040518060200160405280600081525061317b565b8060076000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561277b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613a1b6025913960400191505060405180910390fd5b612783612c7a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806127c957506127c8856127c3612c7a565b6124b7565b5b61281e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806139c66029913960400191505060405180910390fd5b6000612828612c7a565b90506128488187876128398861337e565b6128428861337e565b87612c82565b6128c5836040518060600160405280602a8152602001613a72602a91396001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c8a9092919063ffffffff16565b6001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061297c836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d4a90919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a4612a628187878787876133ef565b505050505050565b612a72612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061397f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b505050505050565b6000838311158290612d37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612cfc578082015181840152602081019050612ce1565b50505050905090810190601f168015612d295780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612dc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612df18473ffffffffffffffffffffffffffffffffffffffff166136fc565b15613159578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612ea9578082015181840152602081019050612e8e565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612eeb578082015181840152602081019050612ed0565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612f2a578082015181840152602081019050612f0f565b50505050905090810190601f168015612f575780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612f7c57600080fd5b505af1925050508015612fb057506040513d6020811015612f9c57600080fd5b810190808051906020019092919050505060015b6130ba57612fbc613810565b80612fc75750613069565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561302e578082015181840152602081019050613013565b50505050905090810190601f16801561305b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806138c76034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613157576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806138fb6028913960400191505060405180910390fd5b505b505050505050565b8060039080519060200190613177929190613747565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613201576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613b596021913960400191505060405180910390fd5b600061320b612c7a565b905061322c8160008761321d8861337e565b6132268861337e565b87612c82565b61328f836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d4a90919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a4613377816000878787876133ef565b5050505050565b60606000600167ffffffffffffffff8111801561339a57600080fd5b506040519080825280602002602001820160405280156133c95781602001602082028036833780820191505090505b50905082816000815181106133da57fe5b60200260200101818152505080915050919050565b61340e8473ffffffffffffffffffffffffffffffffffffffff166136fc565b156136f4578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156134c75780820151818401526020810190506134ac565b50505050905090810190601f1680156134f45780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561351757600080fd5b505af192505050801561354b57506040513d602081101561353757600080fd5b810190808051906020019092919050505060015b61365557613557613810565b806135625750613604565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156135c95780820151818401526020810190506135ae565b50505050905090810190601f1680156135f65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806138c76034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146136f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806138fb6028913960400191505060405180910390fd5b505b505050505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561373e57506000801b8214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261377d57600085556137c4565b82601f1061379657805160ff19168380011785556137c4565b828001600101855582156137c4579182015b828111156137c35782518255916020019190600101906137a8565b5b5090506137d191906137d5565b5090565b5b808211156137ee5760008160009055506001016137d6565b5090565b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015613820576138c3565b60046000803e613831600051613803565b6308c379a0811461384257506138c3565b60405160043d036004823e80513d602482011167ffffffffffffffff8211171561386e575050506138c3565b808201805167ffffffffffffffff81111561388d5750505050506138c3565b8060208301013d85018111156138a8575050505050506138c3565b6138b1826137f2565b60208401016040528296505050505050505b9056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552524f523a206e6f7420656e6f756768204d656d62657273686970546f6b656e455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552524f523a2074686973204d656d6265727368697020546f6b656e20697320616c72656164792075736564455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724552524f523a207520646f6e27742068617665207468697320746f6b656e2049444552524f523a206d6178203230206d696e7420706572207472616e73616374696f6e455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a26469706673582212206c0d7fc701fdca20cab1127e2146446dc51b26d9de5f5d5b7dc5ad1628cd772964736f6c6343000706003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50383935734744435254756e314445787859316d4b526669503547387969537143644a317438437a48535464

Deployed Bytecode

0x60806040526004361061014a5760003560e01c8063771282f6116100b6578063c7876ea41161006f578063c7876ea414610a6d578063d5abeb0114610a98578063e985e9c514610ac3578063eddf832114610b4a578063f242432a14610b78578063f2fde38b14610c945761014a565b8063771282f614610803578063884e53ad1461082e5780638da5cb5b14610845578063a20e08ca14610886578063a22cb4651461094e578063bad7c42c146109ab5761014a565b806343bc16121161010857806343bc1612146105405780634e1273f41461058157806360bd19e21461072f578063635a25c2146107705780636ad1fe02146107bf578063715018a6146107ec5761014a565b8062fdd58e1461014f57806301ffc9a7146101be57806307c60dac1461022e5780630e89341c146102455780632eb2c2d6146102f95780633ccfd60b14610529575b600080fd5b34801561015b57600080fd5b506101a86004803603604081101561017257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ce5565b6040518082815260200191505060405180910390f35b3480156101ca57600080fd5b50610216600480360360208110156101e157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610dc5565b60405180821515815260200191505060405180910390f35b34801561023a57600080fd5b50610243610e2c565b005b34801561025157600080fd5b5061027e6004803603602081101561026857600080fd5b8101908080359060200190929190505050610f13565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102be5780820151818401526020810190506102a3565b50505050905090810190601f1680156102eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030557600080fd5b50610527600480360360a081101561031c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561037957600080fd5b82018360208201111561038b57600080fd5b803590602001918460208302840111640100000000831117156103ad57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561040d57600080fd5b82018360208201111561041f57600080fd5b8035906020019184602083028401116401000000008311171561044157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156104a157600080fd5b8201836020820111156104b357600080fd5b803590602001918460018302840111640100000000831117156104d557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610fb7565b005b34801561053557600080fd5b5061053e611442565b005b34801561054c57600080fd5b50610555611600565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561058d57600080fd5b506106d8600480360360408110156105a457600080fd5b81019080803590602001906401000000008111156105c157600080fd5b8201836020820111156105d357600080fd5b803590602001918460208302840111640100000000831117156105f557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561065557600080fd5b82018360208201111561066757600080fd5b8035906020019184602083028401116401000000008311171561068957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611626565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561071b578082015181840152602081019050610700565b505050509050019250505060405180910390f35b34801561073b57600080fd5b50610744611818565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077c57600080fd5b506107a96004803603602081101561079357600080fd5b810190808035906020019092919050505061183e565b6040518082815260200191505060405180910390f35b3480156107cb57600080fd5b506107d4611856565b60405180821515815260200191505060405180910390f35b3480156107f857600080fd5b50610801611869565b005b34801561080f57600080fd5b506108186119f4565b6040518082815260200191505060405180910390f35b34801561083a57600080fd5b506108436119fa565b005b34801561085157600080fd5b5061085a611ae1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089257600080fd5b5061094c600480360360208110156108a957600080fd5b81019080803590602001906401000000008111156108c657600080fd5b8201836020820111156108d857600080fd5b803590602001918460018302840111640100000000831117156108fa57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611b0b565b005b34801561095a57600080fd5b506109a96004803603604081101561097157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611be1565b005b610a6b600480360360408110156109c157600080fd5b81019080803590602001906401000000008111156109de57600080fd5b8201836020820111156109f057600080fd5b80359060200191846020830284011164010000000083111715610a1257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611d7a565b005b348015610a7957600080fd5b50610a826124ab565b6040518082815260200191505060405180910390f35b348015610aa457600080fd5b50610aad6124b1565b6040518082815260200191505060405180910390f35b348015610acf57600080fd5b50610b3260048036036040811015610ae657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124b7565b60405180821515815260200191505060405180910390f35b610b7660048036036020811015610b6057600080fd5b810190808035906020019092919050505061254b565b005b348015610b8457600080fd5b50610c92600480360360a0811015610b9b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610c0c57600080fd5b820183602082011115610c1e57600080fd5b80359060200191846001830284011164010000000083111715610c4057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506126f5565b005b348015610ca057600080fd5b50610ce360048036036020811015610cb757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a6a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613923602b913960400191505060405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b610e34612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fab5780601f10610f8057610100808354040283529160200191610fab565b820191906000526020600020905b815481529060010190602001808311610f8e57829003601f168201915b50505050509050919050565b8151835114611011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613b316028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611097576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613a1b6025913960400191505060405180910390fd5b61109f612c7a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110e557506110e4856110df612c7a565b6124b7565b5b61113a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613a406032913960400191505060405180910390fd5b6000611144612c7a565b9050611154818787878787612c82565b60005b845181101561132557600085828151811061116e57fe5b60200260200101519050600085838151811061118657fe5b6020026020010151905061120d816040518060600160405280602a8152602001613a72602a91396001600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c8a9092919063ffffffff16565b6001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112c4816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d4a90919063ffffffff16565b6001600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050806001019050611157565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156113d55780820151818401526020810190506113ba565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156114175780820151818401526020810190506113fc565b5050505090500194505050505060405180910390a461143a818787878787612dd2565b505050505050565b61144a612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064605084028161155a57fe5b049081150290604051600060405180830381858888f19350505050158015611586573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460148402816115d057fe5b049081150290604051600060405180830381858888f193505050501580156115fc573d6000803e3d6000fd5b5050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60608151835114611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613b086029913960400191505060405180910390fd5b6000835167ffffffffffffffff8111801561169c57600080fd5b506040519080825280602002602001820160405280156116cb5781602001602082028036833780820191505090505b50905060005b845181101561180d57600073ffffffffffffffffffffffffffffffffffffffff168582815181106116fe57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061394e6031913960400191505060405180910390fd5b6001600085838151811061178357fe5b6020026020010151815260200190815260200160002060008683815181106117a757fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548282815181106117f657fe5b6020026020010181815250508060010190506116d1565b508091505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b6020528060005260406000206000915090505481565b600a60149054906101000a900460ff1681565b611871612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611933576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b611a02612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ac4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b13612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bd5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611bde81613161565b50565b8173ffffffffffffffffffffffffffffffffffffffff16611c00612c7a565b73ffffffffffffffffffffffffffffffffffffffff161415611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613adf6029913960400191505060405180910390fd5b8060026000611c7a612c7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d27612c7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6006546007541115611df4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4552524f523a206d6178206c696d69742072656163686564000000000000000081525060200191505060405180910390fd5b60148111158015611e0757506014825111155b611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613abd6022913960400191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611ee557600080fd5b505afa158015611ef9573d6000803e3d6000fd5b505050506040513d6020811015611f0f57600080fd5b8101908080519060200190929190505050811115611f78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806139a56021913960400191505060405180910390fd5b81518114611fee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552524f523a2077726f6e6720746f6b656e204944206f7220636f756e74000081525060200191505060405180910390fd5b6008548102341015612068576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a2077726f6e67207072696365000000000000000000000000000081525060200191505060405180910390fd5b600a60149054906101000a900460ff166120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a206e6f74206f6e2073616c65000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561217357600080fd5b505afa158015612187573d6000803e3d6000fd5b505050506040513d602081101561219d57600080fd5b8101908080519060200190929190505050811115612206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806139a56021913960400191505060405180910390fd5b60005b825181101561247a57600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e84838151811061225c57fe5b60200260200101516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561229857600080fd5b505afa1580156122ac573d6000803e3d6000fd5b505050506040513d60208110156122c257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612356576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a9c6021913960400191505060405180910390fd5b6000600b600085848151811061236857fe5b6020026020010151815260200190815260200160002054146124045742600b600085848151811061239557fe5b60200260200101518152602001908152602001600020541115612403576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806139ef602c913960400191505060405180910390fd5b5b3373ffffffffffffffffffffffffffffffffffffffff167f6cde4ed53ecc43e1126a8b2b9e8ad2f4ec18d9f7834636ed981cfa61960be3708385848151811061244957fe5b6020026020010151604051808381526020018281526020019250505060405180910390a28080600101915050612209565b50612497336000836040518060200160405280600081525061317b565b806007600082825401925050819055505050565b60085481565b60065481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60065460075411156125c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4552524f523a206d6178206c696d69742072656163686564000000000000000081525060200191505060405180910390fd5b668e1bc9bf0400008102341015612644576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a2077726f6e67207072696365000000000000000000000000000081525060200191505060405180910390fd5b600a60149054906101000a900460ff166126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552524f523a206e6f74206f6e2073616c65000000000000000000000000000081525060200191505060405180910390fd5b6126e2336000836040518060200160405280600081525061317b565b8060076000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561277b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613a1b6025913960400191505060405180910390fd5b612783612c7a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806127c957506127c8856127c3612c7a565b6124b7565b5b61281e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806139c66029913960400191505060405180910390fd5b6000612828612c7a565b90506128488187876128398861337e565b6128428861337e565b87612c82565b6128c5836040518060600160405280602a8152602001613a72602a91396001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c8a9092919063ffffffff16565b6001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061297c836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d4a90919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a4612a628187878787876133ef565b505050505050565b612a72612c7a565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061397f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b505050505050565b6000838311158290612d37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612cfc578082015181840152602081019050612ce1565b50505050905090810190601f168015612d295780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612dc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612df18473ffffffffffffffffffffffffffffffffffffffff166136fc565b15613159578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612ea9578082015181840152602081019050612e8e565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612eeb578082015181840152602081019050612ed0565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612f2a578082015181840152602081019050612f0f565b50505050905090810190601f168015612f575780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612f7c57600080fd5b505af1925050508015612fb057506040513d6020811015612f9c57600080fd5b810190808051906020019092919050505060015b6130ba57612fbc613810565b80612fc75750613069565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561302e578082015181840152602081019050613013565b50505050905090810190601f16801561305b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806138c76034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613157576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806138fb6028913960400191505060405180910390fd5b505b505050505050565b8060039080519060200190613177929190613747565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613201576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613b596021913960400191505060405180910390fd5b600061320b612c7a565b905061322c8160008761321d8861337e565b6132268861337e565b87612c82565b61328f836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d4a90919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a4613377816000878787876133ef565b5050505050565b60606000600167ffffffffffffffff8111801561339a57600080fd5b506040519080825280602002602001820160405280156133c95781602001602082028036833780820191505090505b50905082816000815181106133da57fe5b60200260200101818152505080915050919050565b61340e8473ffffffffffffffffffffffffffffffffffffffff166136fc565b156136f4578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156134c75780820151818401526020810190506134ac565b50505050905090810190601f1680156134f45780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561351757600080fd5b505af192505050801561354b57506040513d602081101561353757600080fd5b810190808051906020019092919050505060015b61365557613557613810565b806135625750613604565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156135c95780820151818401526020810190506135ae565b50505050905090810190601f1680156135f65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806138c76034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146136f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806138fb6028913960400191505060405180910390fd5b505b505050505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561373e57506000801b8214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261377d57600085556137c4565b82601f1061379657805160ff19168380011785556137c4565b828001600101855582156137c4579182015b828111156137c35782518255916020019190600101906137a8565b5b5090506137d191906137d5565b5090565b5b808211156137ee5760008160009055506001016137d6565b5090565b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015613820576138c3565b60046000803e613831600051613803565b6308c379a0811461384257506138c3565b60405160043d036004823e80513d602482011167ffffffffffffffff8211171561386e575050506138c3565b808201805167ffffffffffffffff81111561388d5750505050506138c3565b8060208301013d85018111156138a8575050505050506138c3565b6138b1826137f2565b60208401016040528296505050505050505b9056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552524f523a206e6f7420656e6f756768204d656d62657273686970546f6b656e455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552524f523a2074686973204d656d6265727368697020546f6b656e20697320616c72656164792075736564455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724552524f523a207520646f6e27742068617665207468697320746f6b656e2049444552524f523a206d6178203230206d696e7420706572207472616e73616374696f6e455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a26469706673582212206c0d7fc701fdca20cab1127e2146446dc51b26d9de5f5d5b7dc5ad1628cd772964736f6c63430007060033

Deployed Bytecode Sourcemap

40340:2838:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28295:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5534:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42996:68;;;;;;;;;;;;;:::i;:::-;;28037:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31007:1220;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42717:194;;;;;;;;;;;;;:::i;:::-;;40513:21;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28684:634;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40541:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40596:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40572:16;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24967:148;;;;;;;;;;;;;:::i;:::-;;40447:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42919:69;;;;;;;;;;;;;:::i;:::-;;24325:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43076:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29391:311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41195:1163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40482:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40416;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29774:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42366:343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30006:924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25270:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28295:223;28373:7;28420:1;28401:21;;:7;:21;;;;28393:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28488:9;:13;28498:2;28488:13;;;;;;;;;;;:22;28502:7;28488:22;;;;;;;;;;;;;;;;28481:29;;28295:223;;;;:::o;5534:142::-;5611:4;5635:20;:33;5656:11;5635:33;;;;;;;;;;;;;;;;;;;;;;;;;;;5628:40;;5534:142;;;:::o;42996:68::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43051:5:::1;43044:4;;:12;;;;;;;;;;;;;;;;;;42996:68::o:0;28037:107::-;28099:13;28132:4;28125:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28037:107;;;:::o;31007:1220::-;31272:7;:14;31258:3;:10;:28;31250:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31364:1;31350:16;;:2;:16;;;;31342:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31449:12;:10;:12::i;:::-;31441:20;;:4;:20;;;:60;;;;31465:36;31482:4;31488:12;:10;:12::i;:::-;31465:16;:36::i;:::-;31441:60;31419:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31592:16;31611:12;:10;:12::i;:::-;31592:31;;31636:60;31657:8;31667:4;31673:2;31677:3;31682:7;31691:4;31636:20;:60::i;:::-;31714:9;31709:358;31733:3;:10;31729:1;:14;31709:358;;;31765:10;31778:3;31782:1;31778:6;;;;;;;;;;;;;;31765:19;;31799:14;31816:7;31824:1;31816:10;;;;;;;;;;;;;;31799:27;;31865:126;31907:6;31865:126;;;;;;;;;;;;;;;;;:9;:13;31875:2;31865:13;;;;;;;;;;;:19;31879:4;31865:19;;;;;;;;;;;;;;;;:23;;:126;;;;;:::i;:::-;31843:9;:13;31853:2;31843:13;;;;;;;;;;;:19;31857:4;31843:19;;;;;;;;;;;;;;;:148;;;;32026:29;32048:6;32026:9;:13;32036:2;32026:13;;;;;;;;;;;:17;32040:2;32026:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;32006:9;:13;32016:2;32006:13;;;;;;;;;;;:17;32020:2;32006:17;;;;;;;;;;;;;;;:49;;;;31709:358;;31745:3;;;;;31709:358;;;;32114:2;32084:47;;32108:4;32084:47;;32098:8;32084:47;;;32118:3;32123:7;32084:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32144:75;32180:8;32190:4;32196:2;32200:3;32205:7;32214:4;32144:35;:75::i;:::-;31007:1220;;;;;;:::o;42717:194::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42765:11:::1;42779:21;42765:35;;42819:6;;;;;;;;;;;42811:24;;:39;42846:3;42843:2;42836:6;:9;:13;;;;;;42811:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42869:9;;;;;;;;;;;42861:27;;:42;42899:3;42896:2;42889:6;:9;:13;;;;;;42861:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;24607:1;42717:194::o:0;40513:21::-;;;;;;;;;;;;;:::o;28684:634::-;28848:16;28909:3;:10;28890:8;:15;:29;28882:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28978:30;29025:8;:15;29011:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28978:63;;29059:9;29054:224;29078:8;:15;29074:1;:19;29054:224;;;29146:1;29123:25;;:8;29132:1;29123:11;;;;;;;;;;;;;;:25;;;;29115:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29236:9;:17;29246:3;29250:1;29246:6;;;;;;;;;;;;;;29236:17;;;;;;;;;;;:30;29254:8;29263:1;29254:11;;;;;;;;;;;;;;29236:30;;;;;;;;;;;;;;;;29217:13;29231:1;29217:16;;;;;;;;;;;;;:49;;;;;29095:3;;;;;29054:224;;;;29297:13;29290:20;;;28684:634;;;;:::o;40541:24::-;;;;;;;;;;;;;:::o;40596:54::-;;;;;;;;;;;;;;;;;:::o;40572:16::-;;;;;;;;;;;;;:::o;24967:148::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25074:1:::1;25037:40;;25058:6;;;;;;;;;;;25037:40;;;;;;;;;;;;25105:1;25088:6;;:19;;;;;;;;;;;;;;;;;;24967:148::o:0;40447:28::-;;;;:::o;42919:69::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42976:4:::1;42969;;:11;;;;;;;;;;;;;;;;;;42919:69::o:0;24325:79::-;24363:7;24390:6;;;;;;;;;;;24383:13;;24325:79;:::o;43076:99::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43151:16:::1;43159:7;43151;:16::i;:::-;43076:99:::0;:::o;29391:311::-;29510:8;29494:24;;:12;:10;:12::i;:::-;:24;;;;29486:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29622:8;29577:18;:32;29596:12;:10;:12::i;:::-;29577:32;;;;;;;;;;;;;;;:42;29610:8;29577:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29675:8;29646:48;;29661:12;:10;:12::i;:::-;29646:48;;;29685:8;29646:48;;;;;;;;;;;;;;;;;;;;29391:311;;:::o;41195:1163::-;41331:9;;41314:13;;:26;;41306:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41397:2;41387:6;:12;;:36;;;;;41421:2;41403:7;:14;:20;;41387:36;41379:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41490:15;;;;;;;;;;;:25;;;41516:10;41490:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41480:6;:47;;41472:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41593:7;:14;41583:6;:24;41575:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41680:9;;41673:6;:16;41660:9;:29;;41652:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41730:4;;;;;;;;;;;41722:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41787:15;;;;;;;;;;;:25;;;41813:10;41787:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41777:6;:47;;41769:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41876:9;41872:386;41891:7;:14;41889:1;:16;41872:386;;;41948:15;;;;;;;;;;;:23;;;41972:7;41980:1;41972:10;;;;;;;;;;;;;;41948:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41934:49;;:10;:49;;;41926:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42073:1;42038:19;:31;42058:7;42066:1;42058:10;;;;;;;;;;;;;;42038:31;;;;;;;;;;;;:36;42035:148;;42119:15;42084:19;:31;42104:7;42112:1;42104:10;;;;;;;;;;;;;;42084:31;;;;;;;;;;;;:50;;42076:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42035:148;42217:10;42207:39;;;42228:6;42235:7;42243:1;42235:10;;;;;;;;;;;;;;42207:39;;;;;;;;;;;;;;;;;;;;;;;;41907:3;;;;;;;41872:386;;;;42270:32;42276:10;42288:1;42291:6;42270:32;;;;;;;;;;;;:5;:32::i;:::-;42330:6;42313:13;;:23;;;;;;;;;;;41195:1163;;:::o;40482:24::-;;;;:::o;40416:::-;;;;:::o;29774:160::-;29865:4;29889:18;:27;29908:7;29889:27;;;;;;;;;;;;;;;:37;29917:8;29889:37;;;;;;;;;;;;;;;;;;;;;;;;;29882:44;;29774:160;;;;:::o;42366:343::-;42463:9;;42446:13;;:26;;42438:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42543:10;42536:6;:17;42523:9;:30;;42515:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42594:4;;;;;;;;;;;42586:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42633:32;42639:10;42651:1;42654:6;42633:32;;;;;;;;;;;;:5;:32::i;:::-;42693:6;42676:13;;:23;;;;;;;;;;;42366:343;:::o;30006:924::-;30246:1;30232:16;;:2;:16;;;;30224:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30331:12;:10;:12::i;:::-;30323:20;;:4;:20;;;:60;;;;30347:36;30364:4;30370:12;:10;:12::i;:::-;30347:16;:36::i;:::-;30323:60;30301:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30465:16;30484:12;:10;:12::i;:::-;30465:31;;30509:96;30530:8;30540:4;30546:2;30550:21;30568:2;30550:17;:21::i;:::-;30573:25;30591:6;30573:17;:25::i;:::-;30600:4;30509:20;:96::i;:::-;30640:77;30664:6;30640:77;;;;;;;;;;;;;;;;;:9;:13;30650:2;30640:13;;;;;;;;;;;:19;30654:4;30640:19;;;;;;;;;;;;;;;;:23;;:77;;;;;:::i;:::-;30618:9;:13;30628:2;30618:13;;;;;;;;;;;:19;30632:4;30618:19;;;;;;;;;;;;;;;:99;;;;30748:29;30770:6;30748:9;:13;30758:2;30748:13;;;;;;;;;;;:17;30762:2;30748:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;30728:9;:13;30738:2;30728:13;;;;;;;;;;;:17;30742:2;30728:17;;;;;;;;;;;;;;;:49;;;;30826:2;30795:46;;30820:4;30795:46;;30810:8;30795:46;;;30830:2;30834:6;30795:46;;;;;;;;;;;;;;;;;;;;;;;;30854:68;30885:8;30895:4;30901:2;30905;30909:6;30917:4;30854:30;:68::i;:::-;30006:924;;;;;;:::o;25270:244::-;24547:12;:10;:12::i;:::-;24537:22;;:6;;;;;;;;;;;:22;;;24529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25379:1:::1;25359:22;;:8;:22;;;;25351:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25469:8;25440:38;;25461:6;;;;;;;;;;;25440:38;;;;;;;;;;;;25498:8;25489:6;;:17;;;;;;;;;;;;;;;;;;25270:244:::0;:::o;10030:106::-;10083:15;10118:10;10111:17;;10030:106;:::o;37899:236::-;;;;;;;:::o;14114:192::-;14200:7;14233:1;14228;:6;;14236:12;14220:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14260:9;14276:1;14272;:5;14260:17;;14297:1;14290:8;;;14114:192;;;;;:::o;13211:181::-;13269:7;13289:9;13305:1;13301;:5;13289:17;;13330:1;13325;:6;;13317:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13383:1;13376:8;;;13211:181;;;;:::o;38913:799::-;39167:15;:2;:13;;;:15::i;:::-;39163:542;;;39220:2;39203:43;;;39247:8;39257:4;39263:3;39268:7;39277:4;39203:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39199:495;;;;:::i;:::-;;;;;;;;39567:6;39560:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39199:495;39616:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39199:495;39344:52;;;39332:64;;;:8;:64;;;;39328:163;;39421:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39328:163;39283:223;39163:542;38913:799;;;;;;:::o;33071:88::-;33145:6;33138:4;:13;;;;;;;;;;;;:::i;:::-;;33071:88;:::o;33555:583::-;33689:1;33670:21;;:7;:21;;;;33662:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33742:16;33761:12;:10;:12::i;:::-;33742:31;;33786:107;33807:8;33825:1;33829:7;33838:21;33856:2;33838:17;:21::i;:::-;33861:25;33879:6;33861:17;:25::i;:::-;33888:4;33786:20;:107::i;:::-;33931:34;33958:6;33931:9;:13;33941:2;33931:13;;;;;;;;;;;:22;33945:7;33931:22;;;;;;;;;;;;;;;;:26;;:34;;;;:::i;:::-;33906:9;:13;33916:2;33906:13;;;;;;;;;;;:22;33920:7;33906:22;;;;;;;;;;;;;;;:59;;;;34018:7;33981:57;;34014:1;33981:57;;33996:8;33981:57;;;34027:2;34031:6;33981:57;;;;;;;;;;;;;;;;;;;;;;;;34051:79;34082:8;34100:1;34104:7;34113:2;34117:6;34125:4;34051:30;:79::i;:::-;33555:583;;;;;:::o;39720:198::-;39786:16;39815:22;39854:1;39840:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39815:41;;39878:7;39867:5;39873:1;39867:8;;;;;;;;;;;;;:18;;;;;39905:5;39898:12;;;39720:198;;;:::o;38143:762::-;38372:15;:2;:13;;;:15::i;:::-;38368:530;;;38425:2;38408:38;;;38447:8;38457:4;38463:2;38467:6;38475:4;38408:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38404:483;;;;:::i;:::-;;;;;;;;38760:6;38753:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38404:483;38809:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38404:483;38542:47;;;38530:59;;;:8;:59;;;;38526:158;;38614:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38526:158;38481:218;38368:530;38143:762;;;;;;:::o;18354:619::-;18414:4;18676:16;18703:19;18725:66;18703:88;;;;18894:7;18882:20;18870:32;;18934:11;18922:8;:23;;:42;;;;;18961:3;18949:15;;:8;:15;;18922:42;18914:51;;;;18354:619;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:102:1:-;;99:2;95:7;90:2;83:5;79:14;75:28;65:38;;55:54;;;:::o;115:106::-;;208:5;203:3;199:15;178:36;;168:53;;;:::o;227:833::-;;304:4;286:16;283:26;280:2;;;312:5;;280:2;350:1;347;344;329:23;372:34;403:1;397:8;372:34;:::i;:::-;433:10;428:3;425:19;415:2;;448:5;;;415:2;483;477:9;541:1;523:16;519:24;516:1;510:4;495:49;574:4;568:11;673:16;666:4;658:6;654:17;651:39;618:18;610:6;607:30;591:113;588:2;;;719:5;;;;;588:2;765:6;759:4;755:17;801:3;795:10;828:18;820:6;817:30;814:2;;;850:5;;;;;;;814:2;898:6;891:4;886:3;882:14;878:27;935:16;929:4;925:27;920:3;917:36;914:2;;;956:5;;;;;;;;914:2;1004:29;1026:6;1004:29;:::i;:::-;997:4;992:3;988:14;984:50;980:2;973:62;1051:3;1044:10;;270:790;;;;;;;;:::o

Swarm Source

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