ETH Price: $3,489.84 (+7.51%)
Gas: 6 Gwei

Token

ColorBlock's NFT (NFT@ColorBlock)
 

Overview

Max Total Supply

0 NFT@ColorBlock

Holders

32

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x0000000000000000000000000000000000000018
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:
CBERC1155Token

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-17
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
     /*
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }*/

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
    Note: Simple contract to use as base for const vals
*/
contract CommonConstants {

    bytes4 constant internal ERC1155_ACCEPTED = 0xf23a6e61; // bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))
    bytes4 constant internal ERC1155_BATCH_ACCEPTED = 0xbc197c81; // bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        // uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return a / b;
    }

    /**
    * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

/**
 * Utility library of inline functions on addresses
 */
library Address {

    /**
     * Returns whether the target address is a contract
     * @dev This function will return false if invoked during the constructor of a contract,
     * as the code is not actually created until after the constructor finishes.
     * @param account address of the account to check
     * @return whether the target address is a contract
     */
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        // XXX Currently there is no better way to check if there is a contract in an address
        // than to check the size of the code at that address.
        // See https://ethereum.stackexchange.com/a/14016/36603
        // for more details about how this works.
        // TODO Check this again before the Serenity release, because all addresses will be
        // contracts then.
        // solium-disable-next-line security/no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

}

/**
 * @title ERC165
 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
 */
interface ERC165 {

    /**
     * @notice Query if a contract implements an interface
     * @param _interfaceId The interface identifier, as specified in ERC-165
     * @dev Interface identification is specified in ERC-165. This function
     * uses less than 30,000 gas.
     */
    function supportsInterface(bytes4 _interfaceId)
    external
    view
    returns (bool);
}


/**
    @title ERC-1155 Multi Token Standard
    @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md
    Note: The ERC-165 identifier for this interface is 0xd9b67a26.
 */
interface IERC1155 /* is ERC165 */ {
    /**
        @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard).
        The `_operator` argument MUST be msg.sender.
        The `_from` argument MUST be the address of the holder whose balance is decreased.
        The `_to` argument MUST be the address of the recipient whose balance is increased.
        The `_id` argument MUST be the token type being transferred.
        The `_value` argument MUST be the number of tokens the holder balance is decreased by and match what the recipient balance is increased by.
        When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address).
        When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address).
    */
    event TransferSingle(address _operator, address indexed _from, address indexed _to, uint256 indexed _id, uint256 _value);

    /**
        @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard).
        The `_operator` argument MUST be msg.sender.
        The `_from` argument MUST be the address of the holder whose balance is decreased.
        The `_to` argument MUST be the address of the recipient whose balance is increased.
        The `_ids` argument MUST be the list of tokens being transferred.
        The `_values` argument MUST be the list of number of tokens (matching the list and order of tokens specified in _ids) the holder balance is decreased by and match what the recipient balance is increased by.
        When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address).
        When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address).
    */
    event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _values);

    /**
        @dev MUST emit when approval for a second party/operator address to manage all tokens for an owner address is enabled or disabled (absense of an event assumes disabled).
    */
    event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

    /**
        @dev MUST emit when the URI is updated for a token ID.
        URIs are defined in RFC 3986.
        The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata URI JSON Schema".
    */
    event URI(string _value, uint256 indexed _id);

    /**
        @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
        MUST revert on any other error.
        MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
        After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _id      ID of the token type
        @param _value   Transfer amount
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
    */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external;

    /**
        @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if length of `_ids` is not the same as length of `_values`.
        MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient.
        MUST revert on any other error.
        MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard).
        Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc).
        After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _ids     IDs of each token type (order and length must match _values array)
        @param _values  Transfer amounts per token type (order and length must match _ids array)
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to`
    */
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external;

    /**
        @notice Get the balance of an account's Tokens.
        @param _owner  The address of the token holder
        @param _id     ID of the Token
        @return        The _owner's balance of the Token type requested
     */
    function balanceOf(address _owner, uint256 _id) external view returns (uint256);

    /**
        @notice Get the balance of multiple account/token pairs
        @param _owners The addresses of the token holders
        @param _ids    ID of the Tokens
        @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
     */
    function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory);

    /**
        @notice Enable or disable approval for a third party ("operator") to manage all of the caller's tokens.
        @dev MUST emit the ApprovalForAll event on success.
        @param _operator  Address to add to the set of authorized operators
        @param _approved  True if the operator is approved, false to revoke approval
    */
    function setApprovalForAll(address _operator, bool _approved) external;

    /**
        @notice Queries the approval status of an operator for a given owner.
        @param _owner     The owner of the Tokens
        @param _operator  Address of authorized operator
        @return           True if the operator is approved, false if not
    */
    function isApprovedForAll(address _owner, address _operator) external view returns (bool);
}

/**
    Note: The ERC-165 identifier for this interface is 0x4e2312e0.
*/
interface ERC1155TokenReceiver {
    /**
        @notice Handle the receipt of a single ERC1155 token type.
        @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated.
        This function MUST return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61) if it accepts the transfer.
        This function MUST revert if it rejects the transfer.
        Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.
        @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)"))`
    */
    function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _value, bytes calldata _data) external returns(bytes4);

    /**
        @notice Handle the receipt of multiple ERC1155 token types.
        @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated.
        This function MUST return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81) if it accepts the transfer(s).
        This function MUST revert if it rejects the transfer(s).
        Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.
        @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)"))`
    */
    function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external returns(bytes4);
}

// A sample implementation of core ERC1155 function.
contract ERC1155 is IERC1155, ERC165, CommonConstants{
    using SafeMath for uint256;
    using Address for address;

    // id => (owner => balance)
    mapping (uint256 => mapping(address => uint256)) internal balances;

    // owner => (operator => approved)
    mapping (address => mapping(address => bool)) internal operatorApproval;

/////////////////////////////////////////// ERC165 //////////////////////////////////////////////

    /*
        bytes4(keccak256('supportsInterface(bytes4)'));
    */
    bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7;

    /*
        bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^
        bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^
        bytes4(keccak256("balanceOf(address,uint256)")) ^
        bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^
        bytes4(keccak256("setApprovalForAll(address,bool)")) ^
        bytes4(keccak256("isApprovedForAll(address,address)"));
    */
    bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;

    function supportsInterface(bytes4 _interfaceId)
    public virtual override
    view
    returns (bool) {
         if (_interfaceId == INTERFACE_SIGNATURE_ERC165 ||
             _interfaceId == INTERFACE_SIGNATURE_ERC1155) {
            return true;
         }

         return false;
    }

/////////////////////////////////////////// ERC1155 //////////////////////////////////////////////

    /**
        @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
        MUST revert on any other error.
        MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
        After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _id      ID of the token type
        @param _value   Transfer amount
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
    */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external virtual override{

        _safeTransferFrom(_from, _to, _id, _value, _data);
    }
    function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) internal virtual {

        require(_to != address(0x0), "_to must be non-zero.");
        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        // SafeMath will throw with insuficient funds _from
        // or if _id is not valid (balance will be 0)
        balances[_id][_from] = balances[_id][_from].sub(_value);
        balances[_id][_to]   = _value.add(balances[_id][_to]);

        // MUST emit event
        emit TransferSingle(msg.sender, _from, _to, _id, _value);

        // Now that the balance is updated and the event was emitted,
        // call onERC1155Received if the destination is a contract.
        if (_to.isContract()) {
            _doSafeTransferAcceptanceCheck(msg.sender, _from, _to, _id, _value, _data);
        }
    }
    /**
        @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if length of `_ids` is not the same as length of `_values`.
        MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient.
        MUST revert on any other error.
        MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard).
        Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc).
        After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _ids     IDs of each token type (order and length must match _values array)
        @param _values  Transfer amounts per token type (order and length must match _ids array)
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to`
    */
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external virtual override{
        _safeBatchTransferFrom(_from, _to, _ids, _values, _data);
    }
    function _safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) internal virtual {

        // MUST Throw on errors
        require(_to != address(0x0), "destination address must be non-zero.");
        require(_ids.length == _values.length, "_ids and _values array length must match.");
        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        for (uint256 i = 0; i < _ids.length; ++i) {
            uint256 id = _ids[i];
            uint256 value = _values[i];

            // SafeMath will throw with insuficient funds _from
            // or if _id is not valid (balance will be 0)
            balances[id][_from] = balances[id][_from].sub(value);
            balances[id][_to]   = value.add(balances[id][_to]);
        }

        // Note: instead of the below batch versions of event and acceptance check you MAY have emitted a TransferSingle
        // event and a subsequent call to _doSafeTransferAcceptanceCheck in above loop for each balance change instead.
        // Or emitted a TransferSingle event for each in the loop and then the single _doSafeBatchTransferAcceptanceCheck below.
        // However it is implemented the balance changes and events MUST match when a check (i.e. calling an external contract) is done.

        // MUST emit event
        emit TransferBatch(msg.sender, _from, _to, _ids, _values);

        // Now that the balances are updated and the events are emitted,
        // call onERC1155BatchReceived if the destination is a contract.
        if (_to.isContract()) {
            _doSafeBatchTransferAcceptanceCheck(msg.sender, _from, _to, _ids, _values, _data);
        }
    }
    /**
        @notice Get the balance of an account's Tokens.
        @param _owner  The address of the token holder
        @param _id     ID of the Token
        @return        The _owner's balance of the Token type requested
     */
    function balanceOf(address _owner, uint256 _id) external virtual override view returns (uint256) {
        // The balance of any account can be calculated from the Transfer events history.
        // However, since we need to keep the balances to validate transfer request,
        // there is no extra cost to also privide a querry function.
        return balances[_id][_owner];
    }

    function _balanceOf(address _owner, uint256 _id) internal virtual view returns (uint256) {
        // The balance of any account can be calculated from the Transfer events history.
        // However, since we need to keep the balances to validate transfer request,
        // there is no extra cost to also privide a querry function.
        return balances[_id][_owner];
    }
    /**
        @notice Get the balance of multiple account/token pairs
        @param _owners The addresses of the token holders
        @param _ids    ID of the Tokens
        @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
     */
    function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external virtual override view returns (uint256[] memory) {

        require(_owners.length == _ids.length);

        uint256[] memory balances_ = new uint256[](_owners.length);

        for (uint256 i = 0; i < _owners.length; ++i) {
            balances_[i] = balances[_ids[i]][_owners[i]];
        }

        return balances_;
    }

    /**
        @notice Enable or disable approval for a third party ("operator") to manage all of the caller's tokens.
        @dev MUST emit the ApprovalForAll event on success.
        @param _operator  Address to add to the set of authorized operators
        @param _approved  True if the operator is approved, false to revoke approval
    */
    function setApprovalForAll(address _operator, bool _approved) external virtual override {
        operatorApproval[msg.sender][_operator] = _approved;
        emit ApprovalForAll(msg.sender, _operator, _approved);
    }

    function _setApprovalForAll(address _operator, bool _approved) internal virtual  {
        operatorApproval[msg.sender][_operator] = _approved;
        emit ApprovalForAll(msg.sender, _operator, _approved);
    }
    /**
        @notice Queries the approval status of an operator for a given owner.
        @param _owner     The owner of the Tokens
        @param _operator  Address of authorized operator
        @return           True if the operator is approved, false if not
    */
    function isApprovedForAll(address _owner, address _operator) external virtual override view returns (bool) {
        return operatorApproval[_owner][_operator];
    }

/////////////////////////////////////////// Internal //////////////////////////////////////////////

    function _doSafeTransferAcceptanceCheck(address _operator, address _from, address _to, uint256 _id, uint256 _value, bytes memory _data) internal {

        // If this was a hybrid standards solution you would have to check ERC165(_to).supportsInterface(0x4e2312e0) here but as this is a pure implementation of an ERC-1155 token set as recommended by
        // the standard, it is not necessary. The below should revert in all failure cases i.e. _to isn't a receiver, or it is and either returns an unknown value or it reverts in the call to indicate non-acceptance.


        // Note: if the below reverts in the onERC1155Received function of the _to address you will have an undefined revert reason returned rather than the one in the require test.
        // If you want predictable revert reasons consider using low level _to.call() style instead so the revert does not bubble up and you can revert yourself on the ERC1155_ACCEPTED test.
        require(ERC1155TokenReceiver(_to).onERC1155Received(_operator, _from, _id, _value, _data) == ERC1155_ACCEPTED, "contract returned an unknown value from onERC1155Received");
    }

    function _doSafeBatchTransferAcceptanceCheck(address _operator, address _from, address _to, uint256[] memory _ids, uint256[] memory _values, bytes memory _data) internal {

        // If this was a hybrid standards solution you would have to check ERC165(_to).supportsInterface(0x4e2312e0) here but as this is a pure implementation of an ERC-1155 token set as recommended by
        // the standard, it is not necessary. The below should revert in all failure cases i.e. _to isn't a receiver, or it is and either returns an unknown value or it reverts in the call to indicate non-acceptance.

        // Note: if the below reverts in the onERC1155BatchReceived function of the _to address you will have an undefined revert reason returned rather than the one in the require test.
        // If you want predictable revert reasons consider using low level _to.call() style instead so the revert does not bubble up and you can revert yourself on the ERC1155_BATCH_ACCEPTED test.
        require(ERC1155TokenReceiver(_to).onERC1155BatchReceived(_operator, _from, _ids, _values, _data) == ERC1155_BATCH_ACCEPTED, "contract returned an unknown value from onERC1155BatchReceived");
    }
}


/**
    @dev Mintable form of ERC1155
    Shows how easy it is to mint new items.
*/
contract ERC1155Mintable is ERC1155,Ownable {
    using SafeMath for uint256;
    using Address for address;

    bytes4 constant private INTERFACE_SIGNATURE_URI = 0x0e89341c;

    // id => creators
    mapping (uint256 => address) public creators;

    mapping (uint256 => string) public uris;

    // A nonce to ensure we have a unique id each time we mint.
    uint256 public nonce;

    modifier creatorOnly(uint256 _id) {
        require(creators[_id] == msg.sender);
        _;
    }

    function supportsInterface(bytes4 _interfaceId)
    public virtual override
    view
    returns (bool) {
        if (_interfaceId == INTERFACE_SIGNATURE_URI) {
            return true;
        } else {
            return super.supportsInterface(_interfaceId);
        }
    }

    // Creates a new token type and assings _initialSupply to minter
    function create(uint256 _initialSupply, string calldata _uri) external returns(uint256 _id) {

        _id = ++nonce;
        creators[_id] = msg.sender;
        balances[_id][msg.sender] = _initialSupply;

        // Transfer event with mint semantic
        emit TransferSingle(msg.sender, address(0x0), msg.sender, _id, _initialSupply);

        if (bytes(_uri).length > 0)
        {
            uris[_id] = _uri;
            emit URI(_uri, _id);
        }
    }

    // Batch mint tokens. Assign directly to _to[].
    function mint(uint256 _id, address[] calldata _to, uint256[] calldata _quantities) external creatorOnly(_id) {

        for (uint256 i = 0; i < _to.length; ++i) {

            address to = _to[i];
            uint256 quantity = _quantities[i];

            // Grant the items to the caller
            balances[_id][to] = quantity.add(balances[_id][to]);

            // Emit the Transfer/Mint event.
            // the 0x0 source address implies a mint
            // It will also provide the circulating supply info.
            emit TransferSingle(msg.sender, address(0x0), to, _id, quantity);

            if (to.isContract()) {
                _doSafeTransferAcceptanceCheck(msg.sender, msg.sender, to, _id, quantity, '');
            }
        }
    }

    // Creates a new token type and assings _initialSupply to To Address
    function mintTo(address to, uint256 _initialSupply, string calldata _uri) external returns(uint256 _id) {

        _id = ++nonce;
        creators[_id] = to;
        balances[_id][to] = _initialSupply;

        // Transfer event with mint semantic
        emit TransferSingle(msg.sender, address(0x0), to, _id, _initialSupply);

        if (bytes(_uri).length > 0)
        {
            uris[_id] = _uri;
            emit URI(_uri, _id);
        }
    }

    function setURI(string calldata _uri, uint256 _id) external creatorOnly(_id) {
        uris[_id] = _uri;
        emit URI(_uri, _id);
    }

    function tokenURI(uint256 _id) external view returns (string memory){
        return uris[_id];
    }
}



interface ICBERC1155Token is IERC1155 {

    function tokenURI(uint256 tokenId) external view returns (string memory);

    function isCBNftToken(address tokenAddress) external view returns(bool);

    function approve(address _spender, uint256 _id, uint256 _currentValue, uint256 _value) external;

    function allowance(address _owner, address _spender, uint256 _id) external view returns (uint256);
    
    function isApprovedOrOwner(address owner, address spender, uint256 tokenId,uint256 value) external view returns (bool);

    function exists(uint256 tokenId) external view returns (bool);

    function isOwner(address owner, uint256 tokenId) external view returns (bool);
}


/**
 * @title CBERC1155Token
 * 
 */
contract CBERC1155Token is ERC1155Mintable {
    using SafeMath for uint256;
    bytes4 constant private INTERFACE_SIGNATURE_URI = 0x0e89341c;

    // from => operator => id => allowance
    mapping(address => mapping(address => mapping(uint256 => uint256))) allowances;
    string constant private _name = "ColorBlock's NFT";
    string constant private _symbol = "NFT@ColorBlock";
    /*
    constructor() public {
    }
    */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }
    /**
        @dev MUST emit on any successful call to approve(address _spender, uint256 _id, uint256 _currentValue, uint256 _value)
    */
    event Approval(address indexed _owner, address indexed _spender, uint256 indexed _id, uint256 _oldValue, uint256 _value);

    /**
        @notice Allow other accounts/contracts to spend tokens on behalf of msg.sender
        @dev MUST emit Approval event on success.
        To minimize the risk of the approve/transferFrom attack vector (see https://docs.google.com/document/d/1YLPtQxZu1UAvO9cZ1O2RPXBbT0mooh4DYKjA_jp-RLM/), this function will throw if the current approved allowance does not equal the expected _currentValue, unless _value is 0.
        @param _spender      Address to approve
        @param _id           ID of the Token
        @param _currentValue Expected current value of approved allowance.
        @param _value        Allowance amount
    */
    function approve(address _spender, uint256 _id, uint256 _currentValue, uint256 _value) external {
        address real_owner = msg.sender;
        uint256 balance = super._balanceOf(real_owner,_id);
        require(balance >= _value,"No enough balance to approve.");
        require(allowances[real_owner][_spender][_id] == _currentValue);
        allowances[real_owner][_spender][_id] = _value;
        
        super._setApprovalForAll(_spender,true);
        emit Approval(real_owner, _spender, _id, _currentValue, _value);
    }

    /**
        @notice Queries the spending limit approved for an account
        @param _id       ID of the Token
        @param _owner    The owner allowing the spending
        @param _spender  The address allowed to spend.
        @return          The _spender's allowed spending balance of the Token requested
     */
    function allowance(address _owner, address _spender, uint256 _id) external view returns (uint256){
        return allowances[_owner][_spender][_id];
    }

    // ERC1155
    /*
    function supportsInterface(bytes4 _interfaceId)
    external virtual override(ERC1155Mintable)
    view
    returns (bool) {
         ERC165(address(this)).supportsInterface(_interfaceId);
    }
    */
    function supportsInterface(bytes4 _interfaceId)
    public virtual override
    view
    returns (bool) {
        if (_interfaceId == INTERFACE_SIGNATURE_URI) {
            return true;
        } else {
            return super.supportsInterface(_interfaceId);
        }
    }

    function checkTransfer(address _from, uint256 _id, uint256 _value) 
        internal {
        if (msg.sender != _from) {
            require(allowances[_from][msg.sender][_id] >= _value, "insufficient sender right.");
            allowances[_from][msg.sender][_id] = allowances[_from][msg.sender][_id].sub(_value);       
            //super._setApprovalForAll(_from,true);   
        }
    }

    function postTransfer(address _from)
        internal view {
        if (msg.sender != _from) {
            /*
            mapping(uint256 => uint256) storage ids_right = allowances[_from][msg.sender];
            uint256 len = ids_right.length;
            bool has_allowance = false;
            for(uint256 i=0;i<len;i++)
			{
                if(ids_right[i] > 0)
                {
                    has_allowance = true;
                }
            }
            if(!has_allowance){
                super.setApprovalForAll(_from,false);
            }
            */
        }
    }
    /**
        @notice Transfers value amount of an _id from the _from address to the _to addresses specified. Each parameter array should be the same length, with each index correlating.
        @dev MUST emit Transfer event on success.
        Caller must have sufficient allowance by _from for the _id/_value pair, or isApprovedForAll must be true.
        Throws if `_to` is the zero address.
        Throws if `_id` is not a valid token ID.
        Once allowance is checked the target contract's safeTransferFrom function is called.
        @param _from    source addresses
        @param _to      target addresses
        @param _id      ID of the Token
        @param _value   transfer amounts
        @param _data    Additional data with no specified format, sent in call to `_to`
    */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external override /*payable*/  {
        checkTransfer(_from,_id,_value);
        super._safeTransferFrom(_from, _to, _id, _value, _data);
        postTransfer(_from);
    }

    /**
        @notice Send multiple types of Tokens from a 3rd party in one transfer (with safety call)
        @dev MUST emit Transfer event per id on success.
        Caller must have a sufficient allowance by _from for each of the id/value pairs.
        Throws on any error rather than return a false flag to minimize user errors.
        Once allowances are checked the target contract's safeBatchTransferFrom function is called.
        @param _from    Source address
        @param _to      Target address
        @param _ids     Types of Tokens
        @param _values  Transfer amounts per token type
        @param _data    Additional data with no specified format, sent in call to `_to`
    */
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external override /*payable*/ {
        if (msg.sender != _from) {
            for (uint256 i = 0; i < _ids.length; ++i) {
                checkTransfer(_from,_ids[i],_values[i]);
            }
        }
        super._safeBatchTransferFrom(_from, _to, _ids, _values, _data);
        postTransfer(_from);
    }

  function isCBNftToken(address tokenAddress) public view 
  returns(bool) {
      if( !Address.isContract(tokenAddress) ) 
      {
        return false;
      }
    
      bool result = false;
      string memory ex_name = CBERC1155Token(tokenAddress).name();
      string memory ex_symbol = CBERC1155Token(tokenAddress).symbol();   
              
      result = (keccak256(abi.encodePacked(ex_name)) == keccak256(abi.encodePacked(_name))) 
            && (keccak256(abi.encodePacked(ex_symbol)) == keccak256(abi.encodePacked(_symbol))) 
            && (supportsInterface(INTERFACE_SIGNATURE_URI) );     
      return result;
  }

  function isApprovedOrOwner(address owner, address spender, uint256 tokenId,uint256 value) external view returns (bool) {
    if(!_exists(tokenId) || (address(0) == spender))
    {
      return(false);      
    }
    uint256 balance = super._balanceOf(spender,tokenId);
    if(balance >= value)
    {
        return(true);
    }
    //return false;
    return (allowances[owner][spender][tokenId] >= value);
    //return (allowance(owner,spender,tokenId) >= value);
  }  

  function exists(uint256 tokenId) external view returns (bool) {
    
    return(_exists(tokenId));    
  }

  function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return creators[tokenId] != address(0);
  }

  function isOwner(address owner, uint256 tokenId) external view returns (bool){
    if(!_exists(tokenId) || (address(0) == owner))
    {
      return(false);      
    }
    uint256 balance = super._balanceOf(owner,tokenId);
    return balance != 0 ;
  }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_oldValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_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":false,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_currentValue","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"create","outputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"isCBNftToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"mintTo","outputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_values","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":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uris","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b50600280546001600160a01b031916339081179091556040516000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a361236b806100606000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c806395d89b41116100de578063cd53d08e11610097578063e327a6af11610071578063e327a6af146103ea578063e985e9c5146103fd578063f242432a14610439578063f2fde38b1461044c57600080fd5b8063cd53d08e1461039b578063cef342d8146103c4578063cfa84fc1146103d757600080fd5b806395d89b411461031c5780639f6ed25f14610346578063a22cb46514610359578063affed0e01461036c578063bda95c9714610375578063c87b56dd1461038857600080fd5b80634e1273f41161014b578063598af9e711610125578063598af9e71461029157806367db3b8f146102d15780638da5cb5b146102e45780638f32d59b1461030957600080fd5b80634e1273f41461024b5780634f4df4421461026b5780634f558e791461027e57600080fd5b8062fdd58e146101925780630118fa49146101b857806301ffc9a7146101cb57806306fdde03146101ee5780631253c546146102235780632eb2c2d614610236575b600080fd5b6101a56101a0366004611ca7565b61045f565b6040519081526020015b60405180910390f35b6101a56101c6366004611f8a565b610487565b6101de6101d9366004611dc4565b61055f565b60405190151581526020016101af565b60408051808201909152601081526f10dbdb1bdc909b1bd8dac9dcc813919560821b60208201525b6040516101af9190612190565b610216610231366004611ef7565b610590565b610249610244366004611aba565b61062a565b005b61025e610259366004611d64565b6106ac565b6040516101af919061214e565b610249610279366004611d2b565b6107b9565b6101de61028c366004611ef7565b6108f0565b6101a561029f366004611b75565b6001600160a01b0392831660009081526006602090815260408083209490951682529283528381209181529152205490565b6102496102df366004611dfe565b61090f565b6002546001600160a01b03165b6040516001600160a01b0390911681526020016101af565b6002546001600160a01b031633146101de565b60408051808201909152600e81526d4e465440436f6c6f72426c6f636b60901b6020820152610216565b6101a5610354366004611cd1565b61098e565b610249610367366004611c6b565b610a6f565b6101a560055481565b6101de610383366004611a6c565b610adb565b610216610396366004611ef7565b610cf2565b6102f16103a9366004611ef7565b6003602052600090815260409020546001600160a01b031681565b6101de6103d2366004611bb1565b610d94565b6102496103e5366004611f10565b610e26565b6101de6103f8366004611ca7565b610f62565b6101de61040b366004611a87565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610249610447366004611bf3565b610fb0565b61024961045a366004611a6c565b610fd1565b6000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006005600081546104989061228c565b9182905550600081815260036020908152604080832080546001600160a01b031916339081179091558383528184208185528352818420899055815181815292830189905293945084939291600080516020612316833981519152910160405180910390a4811561055857600081815260046020526040902061051c90848461192e565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b848460405161054f929190612161565b60405180910390a25b9392505050565b60006001600160e01b031982166303a24d0760e21b141561058257506001919050565b61048182610ff4565b919050565b600460205260009081526040902080546105a990612251565b80601f01602080910402602001604051908101604052809291908181526020018280546105d590612251565b80156106225780601f106105f757610100808354040283529160200191610622565b820191906000526020600020905b81548152906001019060200180831161060557829003601f168201915b505050505081565b336001600160a01b038916146106925760005b85811015610690576106808988888481811061065b5761065b6122d3565b90506020020135878785818110610674576106746122d3565b90506020020135611020565b6106898161228c565b905061063d565b505b6106a28888888888888888611113565b5050505050505050565b60608382146106ba57600080fd5b60008467ffffffffffffffff8111156106d5576106d56122e9565b6040519080825280602002602001820160405280156106fe578160200160208202803683370190505b50905060005b858110156107ad57600080868684818110610721576107216122d3565b905060200201358152602001908152602001600020600088888481811061074a5761074a6122d3565b905060200201602081019061075f9190611a6c565b6001600160a01b03166001600160a01b0316815260200190815260200160002054828281518110610792576107926122d3565b60209081029190910101526107a68161228c565b9050610704565b5090505b949350505050565b3360006107c6828661045f565b90508281101561081d5760405162461bcd60e51b815260206004820152601d60248201527f4e6f20656e6f7567682062616c616e636520746f20617070726f76652e00000060448201526064015b60405180910390fd5b6001600160a01b038083166000908152600660209081526040808320938a16835292815282822088835290522054841461085657600080fd5b6001600160a01b038083166000908152600660209081526040808320938a168352928152828220888352905220839055610891866001610a6f565b84866001600160a01b0316836001600160a01b03167f3a9c85c6b31f7a9d7fe1478f53e1be42e85db97ca30d1789cfef9196dbc472c987876040516108e0929190918252602082015260400190565b60405180910390a4505050505050565b6000818152600360205260408120546001600160a01b03161515610481565b60008181526003602052604090205481906001600160a01b0316331461093457600080fd5b600082815260046020526040902061094d90858561192e565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8585604051610980929190612161565b60405180910390a250505050565b600060056000815461099f9061228c565b9182905550600081815260036020908152604080832080546001600160a01b0319166001600160a01b038b169081179091558383528184208185528352818420899055815133815292830189905293945084939291600080516020612316833981519152910160405180910390a481156107b1576000818152600460205260409020610a2c90848461192e565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8484604051610a5f929190612161565b60405180910390a2949350505050565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000813b610aeb57506000919050565b600080836001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b158015610b2757600080fd5b505afa158015610b3b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610b639190810190611e4a565b90506000846001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015610ba057600080fd5b505afa158015610bb4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bdc9190810190611e4a565b90506040518060400160405280601081526020016f10dbdb1bdc909b1bd8dac9dcc813919560821b815250604051602001610c179190612073565b6040516020818303038152906040528051906020012082604051602001610c3e9190612073565b60405160208183030381529060405280519060200120148015610cd257506040518060400160405280600e81526020016d4e465440436f6c6f72426c6f636b60901b815250604051602001610c939190612073565b6040516020818303038152906040528051906020012081604051602001610cba9190612073565b60405160208183030381529060405280519060200120145b8015610ce95750610ce96303a24d0760e21b61055f565b95945050505050565b6000818152600460205260409020805460609190610d0f90612251565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3b90612251565b8015610d885780601f10610d5d57610100808354040283529160200191610d88565b820191906000526020600020905b815481529060010190602001808311610d6b57829003601f168201915b50505050509050919050565b6000828152600360205260408120546001600160a01b03161580610dbf57506001600160a01b038416155b15610dcc575060006107b1565b6000610dd8858561045f565b9050828110610deb5760019150506107b1565b50506001600160a01b038085166000908152600660209081526040808320938716835292815282822085835290522054811115949350505050565b60008581526003602052604090205485906001600160a01b03163314610e4b57600080fd5b60005b84811015610f59576000868683818110610e6a57610e6a6122d3565b9050602002016020810190610e7f9190611a6c565b90506000858584818110610e9557610e956122d3565b60008c8152602081815260408083206001600160a01b0389168452825290912054910292909201359250610ecb91839150611486565b60008a8152602081815260408083206001600160a01b0387168085529083528184209490945580513381529182018590528c939291600080516020612316833981519152910160405180910390a46001600160a01b0382163b15610f4657610f463333848c85604051806020016040528060008152506114a4565b505080610f529061228c565b9050610e4e565b50505050505050565b6000818152600360205260408120546001600160a01b03161580610f8d57506001600160a01b038316155b15610f9a57506000610481565b6000610fa6848461045f565b1515949350505050565b610fbb868585611020565b610fc98686868686866115a9565b505050505050565b6002546001600160a01b03163314610fe857600080fd5b610ff181611758565b50565b60006001600160e01b031982166303a24d0760e21b141561101757506001919050565b610481826117c7565b336001600160a01b0384161461110e576001600160a01b038316600090815260066020908152604080832033845282528083208584529091529020548111156110ab5760405162461bcd60e51b815260206004820152601a60248201527f696e73756666696369656e742073656e6465722072696768742e0000000000006044820152606401610814565b6001600160a01b038316600090815260066020908152604080832033845282528083208584529091529020546110e1908261180d565b6001600160a01b038416600090815260066020908152604080832033845282528083208684529091529020555b505050565b6001600160a01b0387166111775760405162461bcd60e51b815260206004820152602560248201527f64657374696e6174696f6e2061646472657373206d757374206265206e6f6e2d6044820152643d32b9379760d91b6064820152608401610814565b8483146111d85760405162461bcd60e51b815260206004820152602960248201527f5f69647320616e64205f76616c756573206172726179206c656e677468206d7560448201526839ba1036b0ba31b41760b91b6064820152608401610814565b6001600160a01b03881633148061121657506001600160a01b03881660009081526001602081815260408084203385529091529091205460ff161515145b6112325760405162461bcd60e51b8152600401610814906121a3565b60005b85811015611376576000878783818110611251576112516122d3565b905060200201359050600086868481811061126e5761126e6122d3565b9050602002013590506112bf8160008085815260200190815260200160002060008e6001600160a01b03166001600160a01b031681526020019081526020016000205461180d90919063ffffffff16565b60008084815260200190815260200160002060008d6001600160a01b03166001600160a01b031681526020019081526020016000208190555061134060008084815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020548261148690919063ffffffff16565b6000928352602083815260408085206001600160a01b038e168652909152909220919091555061136f8161228c565b9050611235565b50866001600160a01b0316886001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898989896040516113ca9493929190612127565b60405180910390a46001600160a01b0387163b156106a2576106a233898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525061182992505050565b600061149282846121f2565b905082811015610481576104816122a7565b60405163f23a6e6160e01b808252906001600160a01b0386169063f23a6e61906114da908a908a908990899089906004016120ed565b602060405180830381600087803b1580156114f457600080fd5b505af1158015611508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152c9190611de1565b6001600160e01b03191614610fc95760405162461bcd60e51b815260206004820152603960248201527f636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c60448201527f75652066726f6d206f6e455243313135355265636569766564000000000000006064820152608401610814565b6001600160a01b0385166115f75760405162461bcd60e51b81526020600482015260156024820152742fba379036bab9ba103132903737b716bd32b9379760591b6044820152606401610814565b6001600160a01b03861633148061163557506001600160a01b03861660009081526001602081815260408084203385529091529091205460ff161515145b6116515760405162461bcd60e51b8152600401610814906121a3565b6000848152602081815260408083206001600160a01b038a16845290915290205461167c908461180d565b6000858152602081815260408083206001600160a01b038b811685529252808320939093558716815220546116b2908490611486565b6000858152602081815260408083206001600160a01b038a8116808652918452938290209490945580513381529182018790528793928a1691600080516020612316833981519152910160405180910390a46001600160a01b0385163b15610fc957610fc9338787878787878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506114a492505050565b6001600160a01b03811661176b57600080fd5b6002546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166301ffc9a760e01b14806117f857506001600160e01b03198216636cdb3d1360e11b145b1561180557506001919050565b506000919050565b60008282111561181f5761181f6122a7565b610558828461220a565b60405163bc197c8160e01b808252906001600160a01b0386169063bc197c819061185f908a908a9089908990899060040161208f565b602060405180830381600087803b15801561187957600080fd5b505af115801561188d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b19190611de1565b6001600160e01b03191614610fc95760405162461bcd60e51b815260206004820152603e60248201527f636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c60448201527f75652066726f6d206f6e455243313135354261746368526563656976656400006064820152608401610814565b82805461193a90612251565b90600052602060002090601f01602090048101928261195c57600085556119a2565b82601f106119755782800160ff198235161785556119a2565b828001600101855582156119a2579182015b828111156119a2578235825591602001919060010190611987565b506119ae9291506119b2565b5090565b5b808211156119ae57600081556001016119b3565b80356001600160a01b038116811461058b57600080fd5b60008083601f8401126119f057600080fd5b50813567ffffffffffffffff811115611a0857600080fd5b6020830191508360208260051b8501011115611a2357600080fd5b9250929050565b60008083601f840112611a3c57600080fd5b50813567ffffffffffffffff811115611a5457600080fd5b602083019150836020828501011115611a2357600080fd5b600060208284031215611a7e57600080fd5b610558826119c7565b60008060408385031215611a9a57600080fd5b611aa3836119c7565b9150611ab1602084016119c7565b90509250929050565b60008060008060008060008060a0898b031215611ad657600080fd5b611adf896119c7565b9750611aed60208a016119c7565b9650604089013567ffffffffffffffff80821115611b0a57600080fd5b611b168c838d016119de565b909850965060608b0135915080821115611b2f57600080fd5b611b3b8c838d016119de565b909650945060808b0135915080821115611b5457600080fd5b50611b618b828c01611a2a565b999c989b5096995094979396929594505050565b600080600060608486031215611b8a57600080fd5b611b93846119c7565b9250611ba1602085016119c7565b9150604084013590509250925092565b60008060008060808587031215611bc757600080fd5b611bd0856119c7565b9350611bde602086016119c7565b93969395505050506040820135916060013590565b60008060008060008060a08789031215611c0c57600080fd5b611c15876119c7565b9550611c23602088016119c7565b94506040870135935060608701359250608087013567ffffffffffffffff811115611c4d57600080fd5b611c5989828a01611a2a565b979a9699509497509295939492505050565b60008060408385031215611c7e57600080fd5b611c87836119c7565b915060208301358015158114611c9c57600080fd5b809150509250929050565b60008060408385031215611cba57600080fd5b611cc3836119c7565b946020939093013593505050565b60008060008060608587031215611ce757600080fd5b611cf0856119c7565b935060208501359250604085013567ffffffffffffffff811115611d1357600080fd5b611d1f87828801611a2a565b95989497509550505050565b60008060008060808587031215611d4157600080fd5b611d4a856119c7565b966020860135965060408601359560600135945092505050565b60008060008060408587031215611d7a57600080fd5b843567ffffffffffffffff80821115611d9257600080fd5b611d9e888389016119de565b90965094506020870135915080821115611db757600080fd5b50611d1f878288016119de565b600060208284031215611dd657600080fd5b8135610558816122ff565b600060208284031215611df357600080fd5b8151610558816122ff565b600080600060408486031215611e1357600080fd5b833567ffffffffffffffff811115611e2a57600080fd5b611e3686828701611a2a565b909790965060209590950135949350505050565b600060208284031215611e5c57600080fd5b815167ffffffffffffffff80821115611e7457600080fd5b818401915084601f830112611e8857600080fd5b815181811115611e9a57611e9a6122e9565b604051601f8201601f19908116603f01168101908382118183101715611ec257611ec26122e9565b81604052828152876020848701011115611edb57600080fd5b611eec836020830160208801612221565b979650505050505050565b600060208284031215611f0957600080fd5b5035919050565b600080600080600060608688031215611f2857600080fd5b85359450602086013567ffffffffffffffff80821115611f4757600080fd5b611f5389838a016119de565b90965094506040880135915080821115611f6c57600080fd5b50611f79888289016119de565b969995985093965092949392505050565b600080600060408486031215611f9f57600080fd5b83359250602084013567ffffffffffffffff811115611fbd57600080fd5b611fc986828701611a2a565b9497909650939450505050565b81835260006001600160fb1b03831115611fef57600080fd5b8260051b8083602087013760009401602001938452509192915050565b600081518084526020808501945080840160005b8381101561203c57815187529582019590820190600101612020565b509495945050505050565b6000815180845261205f816020860160208601612221565b601f01601f19169290920160200192915050565b60008251612085818460208701612221565b9190910192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906120bb9083018661200c565b82810360608401526120cd818661200c565b905082810360808401526120e18185612047565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611eec90830184612047565b60408152600061213b604083018688611fd6565b8281036020840152611eec818587611fd6565b602081526000610558602083018461200c565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006105586020830184612047565b6020808252602f908201527f4e656564206f70657261746f7220617070726f76616c20666f7220337264207060408201526e30b93a3c903a3930b739b332b9399760891b606082015260800190565b60008219821115612205576122056122bd565b500190565b60008282101561221c5761221c6122bd565b500390565b60005b8381101561223c578181015183820152602001612224565b8381111561224b576000848401525b50505050565b600181811c9082168061226557607f821691505b6020821081141561228657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122a0576122a06122bd565b5060010190565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ff157600080fdfec3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62a2646970667358221220628a43d75c2929358aa41eacba5e7d820cea1195e2a682f7e07b72ce35f28f2564736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018d5760003560e01c806395d89b41116100de578063cd53d08e11610097578063e327a6af11610071578063e327a6af146103ea578063e985e9c5146103fd578063f242432a14610439578063f2fde38b1461044c57600080fd5b8063cd53d08e1461039b578063cef342d8146103c4578063cfa84fc1146103d757600080fd5b806395d89b411461031c5780639f6ed25f14610346578063a22cb46514610359578063affed0e01461036c578063bda95c9714610375578063c87b56dd1461038857600080fd5b80634e1273f41161014b578063598af9e711610125578063598af9e71461029157806367db3b8f146102d15780638da5cb5b146102e45780638f32d59b1461030957600080fd5b80634e1273f41461024b5780634f4df4421461026b5780634f558e791461027e57600080fd5b8062fdd58e146101925780630118fa49146101b857806301ffc9a7146101cb57806306fdde03146101ee5780631253c546146102235780632eb2c2d614610236575b600080fd5b6101a56101a0366004611ca7565b61045f565b6040519081526020015b60405180910390f35b6101a56101c6366004611f8a565b610487565b6101de6101d9366004611dc4565b61055f565b60405190151581526020016101af565b60408051808201909152601081526f10dbdb1bdc909b1bd8dac9dcc813919560821b60208201525b6040516101af9190612190565b610216610231366004611ef7565b610590565b610249610244366004611aba565b61062a565b005b61025e610259366004611d64565b6106ac565b6040516101af919061214e565b610249610279366004611d2b565b6107b9565b6101de61028c366004611ef7565b6108f0565b6101a561029f366004611b75565b6001600160a01b0392831660009081526006602090815260408083209490951682529283528381209181529152205490565b6102496102df366004611dfe565b61090f565b6002546001600160a01b03165b6040516001600160a01b0390911681526020016101af565b6002546001600160a01b031633146101de565b60408051808201909152600e81526d4e465440436f6c6f72426c6f636b60901b6020820152610216565b6101a5610354366004611cd1565b61098e565b610249610367366004611c6b565b610a6f565b6101a560055481565b6101de610383366004611a6c565b610adb565b610216610396366004611ef7565b610cf2565b6102f16103a9366004611ef7565b6003602052600090815260409020546001600160a01b031681565b6101de6103d2366004611bb1565b610d94565b6102496103e5366004611f10565b610e26565b6101de6103f8366004611ca7565b610f62565b6101de61040b366004611a87565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610249610447366004611bf3565b610fb0565b61024961045a366004611a6c565b610fd1565b6000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006005600081546104989061228c565b9182905550600081815260036020908152604080832080546001600160a01b031916339081179091558383528184208185528352818420899055815181815292830189905293945084939291600080516020612316833981519152910160405180910390a4811561055857600081815260046020526040902061051c90848461192e565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b848460405161054f929190612161565b60405180910390a25b9392505050565b60006001600160e01b031982166303a24d0760e21b141561058257506001919050565b61048182610ff4565b919050565b600460205260009081526040902080546105a990612251565b80601f01602080910402602001604051908101604052809291908181526020018280546105d590612251565b80156106225780601f106105f757610100808354040283529160200191610622565b820191906000526020600020905b81548152906001019060200180831161060557829003601f168201915b505050505081565b336001600160a01b038916146106925760005b85811015610690576106808988888481811061065b5761065b6122d3565b90506020020135878785818110610674576106746122d3565b90506020020135611020565b6106898161228c565b905061063d565b505b6106a28888888888888888611113565b5050505050505050565b60608382146106ba57600080fd5b60008467ffffffffffffffff8111156106d5576106d56122e9565b6040519080825280602002602001820160405280156106fe578160200160208202803683370190505b50905060005b858110156107ad57600080868684818110610721576107216122d3565b905060200201358152602001908152602001600020600088888481811061074a5761074a6122d3565b905060200201602081019061075f9190611a6c565b6001600160a01b03166001600160a01b0316815260200190815260200160002054828281518110610792576107926122d3565b60209081029190910101526107a68161228c565b9050610704565b5090505b949350505050565b3360006107c6828661045f565b90508281101561081d5760405162461bcd60e51b815260206004820152601d60248201527f4e6f20656e6f7567682062616c616e636520746f20617070726f76652e00000060448201526064015b60405180910390fd5b6001600160a01b038083166000908152600660209081526040808320938a16835292815282822088835290522054841461085657600080fd5b6001600160a01b038083166000908152600660209081526040808320938a168352928152828220888352905220839055610891866001610a6f565b84866001600160a01b0316836001600160a01b03167f3a9c85c6b31f7a9d7fe1478f53e1be42e85db97ca30d1789cfef9196dbc472c987876040516108e0929190918252602082015260400190565b60405180910390a4505050505050565b6000818152600360205260408120546001600160a01b03161515610481565b60008181526003602052604090205481906001600160a01b0316331461093457600080fd5b600082815260046020526040902061094d90858561192e565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8585604051610980929190612161565b60405180910390a250505050565b600060056000815461099f9061228c565b9182905550600081815260036020908152604080832080546001600160a01b0319166001600160a01b038b169081179091558383528184208185528352818420899055815133815292830189905293945084939291600080516020612316833981519152910160405180910390a481156107b1576000818152600460205260409020610a2c90848461192e565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8484604051610a5f929190612161565b60405180910390a2949350505050565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000813b610aeb57506000919050565b600080836001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b158015610b2757600080fd5b505afa158015610b3b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610b639190810190611e4a565b90506000846001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015610ba057600080fd5b505afa158015610bb4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bdc9190810190611e4a565b90506040518060400160405280601081526020016f10dbdb1bdc909b1bd8dac9dcc813919560821b815250604051602001610c179190612073565b6040516020818303038152906040528051906020012082604051602001610c3e9190612073565b60405160208183030381529060405280519060200120148015610cd257506040518060400160405280600e81526020016d4e465440436f6c6f72426c6f636b60901b815250604051602001610c939190612073565b6040516020818303038152906040528051906020012081604051602001610cba9190612073565b60405160208183030381529060405280519060200120145b8015610ce95750610ce96303a24d0760e21b61055f565b95945050505050565b6000818152600460205260409020805460609190610d0f90612251565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3b90612251565b8015610d885780601f10610d5d57610100808354040283529160200191610d88565b820191906000526020600020905b815481529060010190602001808311610d6b57829003601f168201915b50505050509050919050565b6000828152600360205260408120546001600160a01b03161580610dbf57506001600160a01b038416155b15610dcc575060006107b1565b6000610dd8858561045f565b9050828110610deb5760019150506107b1565b50506001600160a01b038085166000908152600660209081526040808320938716835292815282822085835290522054811115949350505050565b60008581526003602052604090205485906001600160a01b03163314610e4b57600080fd5b60005b84811015610f59576000868683818110610e6a57610e6a6122d3565b9050602002016020810190610e7f9190611a6c565b90506000858584818110610e9557610e956122d3565b60008c8152602081815260408083206001600160a01b0389168452825290912054910292909201359250610ecb91839150611486565b60008a8152602081815260408083206001600160a01b0387168085529083528184209490945580513381529182018590528c939291600080516020612316833981519152910160405180910390a46001600160a01b0382163b15610f4657610f463333848c85604051806020016040528060008152506114a4565b505080610f529061228c565b9050610e4e565b50505050505050565b6000818152600360205260408120546001600160a01b03161580610f8d57506001600160a01b038316155b15610f9a57506000610481565b6000610fa6848461045f565b1515949350505050565b610fbb868585611020565b610fc98686868686866115a9565b505050505050565b6002546001600160a01b03163314610fe857600080fd5b610ff181611758565b50565b60006001600160e01b031982166303a24d0760e21b141561101757506001919050565b610481826117c7565b336001600160a01b0384161461110e576001600160a01b038316600090815260066020908152604080832033845282528083208584529091529020548111156110ab5760405162461bcd60e51b815260206004820152601a60248201527f696e73756666696369656e742073656e6465722072696768742e0000000000006044820152606401610814565b6001600160a01b038316600090815260066020908152604080832033845282528083208584529091529020546110e1908261180d565b6001600160a01b038416600090815260066020908152604080832033845282528083208684529091529020555b505050565b6001600160a01b0387166111775760405162461bcd60e51b815260206004820152602560248201527f64657374696e6174696f6e2061646472657373206d757374206265206e6f6e2d6044820152643d32b9379760d91b6064820152608401610814565b8483146111d85760405162461bcd60e51b815260206004820152602960248201527f5f69647320616e64205f76616c756573206172726179206c656e677468206d7560448201526839ba1036b0ba31b41760b91b6064820152608401610814565b6001600160a01b03881633148061121657506001600160a01b03881660009081526001602081815260408084203385529091529091205460ff161515145b6112325760405162461bcd60e51b8152600401610814906121a3565b60005b85811015611376576000878783818110611251576112516122d3565b905060200201359050600086868481811061126e5761126e6122d3565b9050602002013590506112bf8160008085815260200190815260200160002060008e6001600160a01b03166001600160a01b031681526020019081526020016000205461180d90919063ffffffff16565b60008084815260200190815260200160002060008d6001600160a01b03166001600160a01b031681526020019081526020016000208190555061134060008084815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020548261148690919063ffffffff16565b6000928352602083815260408085206001600160a01b038e168652909152909220919091555061136f8161228c565b9050611235565b50866001600160a01b0316886001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898989896040516113ca9493929190612127565b60405180910390a46001600160a01b0387163b156106a2576106a233898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525061182992505050565b600061149282846121f2565b905082811015610481576104816122a7565b60405163f23a6e6160e01b808252906001600160a01b0386169063f23a6e61906114da908a908a908990899089906004016120ed565b602060405180830381600087803b1580156114f457600080fd5b505af1158015611508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152c9190611de1565b6001600160e01b03191614610fc95760405162461bcd60e51b815260206004820152603960248201527f636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c60448201527f75652066726f6d206f6e455243313135355265636569766564000000000000006064820152608401610814565b6001600160a01b0385166115f75760405162461bcd60e51b81526020600482015260156024820152742fba379036bab9ba103132903737b716bd32b9379760591b6044820152606401610814565b6001600160a01b03861633148061163557506001600160a01b03861660009081526001602081815260408084203385529091529091205460ff161515145b6116515760405162461bcd60e51b8152600401610814906121a3565b6000848152602081815260408083206001600160a01b038a16845290915290205461167c908461180d565b6000858152602081815260408083206001600160a01b038b811685529252808320939093558716815220546116b2908490611486565b6000858152602081815260408083206001600160a01b038a8116808652918452938290209490945580513381529182018790528793928a1691600080516020612316833981519152910160405180910390a46001600160a01b0385163b15610fc957610fc9338787878787878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506114a492505050565b6001600160a01b03811661176b57600080fd5b6002546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166301ffc9a760e01b14806117f857506001600160e01b03198216636cdb3d1360e11b145b1561180557506001919050565b506000919050565b60008282111561181f5761181f6122a7565b610558828461220a565b60405163bc197c8160e01b808252906001600160a01b0386169063bc197c819061185f908a908a9089908990899060040161208f565b602060405180830381600087803b15801561187957600080fd5b505af115801561188d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b19190611de1565b6001600160e01b03191614610fc95760405162461bcd60e51b815260206004820152603e60248201527f636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c60448201527f75652066726f6d206f6e455243313135354261746368526563656976656400006064820152608401610814565b82805461193a90612251565b90600052602060002090601f01602090048101928261195c57600085556119a2565b82601f106119755782800160ff198235161785556119a2565b828001600101855582156119a2579182015b828111156119a2578235825591602001919060010190611987565b506119ae9291506119b2565b5090565b5b808211156119ae57600081556001016119b3565b80356001600160a01b038116811461058b57600080fd5b60008083601f8401126119f057600080fd5b50813567ffffffffffffffff811115611a0857600080fd5b6020830191508360208260051b8501011115611a2357600080fd5b9250929050565b60008083601f840112611a3c57600080fd5b50813567ffffffffffffffff811115611a5457600080fd5b602083019150836020828501011115611a2357600080fd5b600060208284031215611a7e57600080fd5b610558826119c7565b60008060408385031215611a9a57600080fd5b611aa3836119c7565b9150611ab1602084016119c7565b90509250929050565b60008060008060008060008060a0898b031215611ad657600080fd5b611adf896119c7565b9750611aed60208a016119c7565b9650604089013567ffffffffffffffff80821115611b0a57600080fd5b611b168c838d016119de565b909850965060608b0135915080821115611b2f57600080fd5b611b3b8c838d016119de565b909650945060808b0135915080821115611b5457600080fd5b50611b618b828c01611a2a565b999c989b5096995094979396929594505050565b600080600060608486031215611b8a57600080fd5b611b93846119c7565b9250611ba1602085016119c7565b9150604084013590509250925092565b60008060008060808587031215611bc757600080fd5b611bd0856119c7565b9350611bde602086016119c7565b93969395505050506040820135916060013590565b60008060008060008060a08789031215611c0c57600080fd5b611c15876119c7565b9550611c23602088016119c7565b94506040870135935060608701359250608087013567ffffffffffffffff811115611c4d57600080fd5b611c5989828a01611a2a565b979a9699509497509295939492505050565b60008060408385031215611c7e57600080fd5b611c87836119c7565b915060208301358015158114611c9c57600080fd5b809150509250929050565b60008060408385031215611cba57600080fd5b611cc3836119c7565b946020939093013593505050565b60008060008060608587031215611ce757600080fd5b611cf0856119c7565b935060208501359250604085013567ffffffffffffffff811115611d1357600080fd5b611d1f87828801611a2a565b95989497509550505050565b60008060008060808587031215611d4157600080fd5b611d4a856119c7565b966020860135965060408601359560600135945092505050565b60008060008060408587031215611d7a57600080fd5b843567ffffffffffffffff80821115611d9257600080fd5b611d9e888389016119de565b90965094506020870135915080821115611db757600080fd5b50611d1f878288016119de565b600060208284031215611dd657600080fd5b8135610558816122ff565b600060208284031215611df357600080fd5b8151610558816122ff565b600080600060408486031215611e1357600080fd5b833567ffffffffffffffff811115611e2a57600080fd5b611e3686828701611a2a565b909790965060209590950135949350505050565b600060208284031215611e5c57600080fd5b815167ffffffffffffffff80821115611e7457600080fd5b818401915084601f830112611e8857600080fd5b815181811115611e9a57611e9a6122e9565b604051601f8201601f19908116603f01168101908382118183101715611ec257611ec26122e9565b81604052828152876020848701011115611edb57600080fd5b611eec836020830160208801612221565b979650505050505050565b600060208284031215611f0957600080fd5b5035919050565b600080600080600060608688031215611f2857600080fd5b85359450602086013567ffffffffffffffff80821115611f4757600080fd5b611f5389838a016119de565b90965094506040880135915080821115611f6c57600080fd5b50611f79888289016119de565b969995985093965092949392505050565b600080600060408486031215611f9f57600080fd5b83359250602084013567ffffffffffffffff811115611fbd57600080fd5b611fc986828701611a2a565b9497909650939450505050565b81835260006001600160fb1b03831115611fef57600080fd5b8260051b8083602087013760009401602001938452509192915050565b600081518084526020808501945080840160005b8381101561203c57815187529582019590820190600101612020565b509495945050505050565b6000815180845261205f816020860160208601612221565b601f01601f19169290920160200192915050565b60008251612085818460208701612221565b9190910192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906120bb9083018661200c565b82810360608401526120cd818661200c565b905082810360808401526120e18185612047565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611eec90830184612047565b60408152600061213b604083018688611fd6565b8281036020840152611eec818587611fd6565b602081526000610558602083018461200c565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006105586020830184612047565b6020808252602f908201527f4e656564206f70657261746f7220617070726f76616c20666f7220337264207060408201526e30b93a3c903a3930b739b332b9399760891b606082015260800190565b60008219821115612205576122056122bd565b500190565b60008282101561221c5761221c6122bd565b500390565b60005b8381101561223c578181015183820152602001612224565b8381111561224b576000848401525b50505050565b600181811c9082168061226557607f821691505b6020821081141561228657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122a0576122a06122bd565b5060010190565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ff157600080fdfec3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62a2646970667358221220628a43d75c2929358aa41eacba5e7d820cea1195e2a682f7e07b72ce35f28f2564736f6c63430008070033

Deployed Bytecode Sourcemap

32988:8160:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23916:391;;;;;;:::i;:::-;;:::i;:::-;;;17878:25:1;;;17866:2;17851:18;23916:391:0;;;;;;;;30104:479;;;;;;:::i;:::-;;:::i;35906:285::-;;;;;;:::i;:::-;;:::i;:::-;;;13934:14:1;;13927:22;13909:41;;13897:2;13882:18;35906:285:0;13769:187:1;33434:91:0;33512:5;;;;;;;;;;;;-1:-1:-1;;;33512:5:0;;;;33434:91;;;;;;;:::i;29490:39::-;;;;;;:::i;:::-;;:::i;39040:452::-;;;;;;:::i;:::-;;:::i;:::-;;25002:422;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34625:541::-;;;;;;:::i;:::-;;:::i;40638:109::-;;;;;;:::i;:::-;;:::i;35505:156::-;;;;;;:::i;:::-;-1:-1:-1;;;;;35620:18:0;;;35594:7;35620:18;;;:10;:18;;;;;;;;:28;;;;;;;;;;;;:33;;;;;;;;35505:156;31977:142;;;;;;:::i;:::-;;:::i;709:79::-;774:6;;-1:-1:-1;;;;;774:6:0;709:79;;;-1:-1:-1;;;;;11260:32:1;;;11242:51;;11230:2;11215:18;709:79:0;11096:203:1;1044:92:0;1122:6;;-1:-1:-1;;;;;1122:6:0;1108:10;:20;1044:92;;33594:95;33674:7;;;;;;;;;;;;-1:-1:-1;;;33674:7:0;;;;33594:95;;31502:467;;;;;;:::i;:::-;;:::i;25786:222::-;;;;;;:::i;:::-;;:::i;29603:20::-;;;;;;39498:644;;;;;;:::i;:::-;;:::i;32127:103::-;;;;;;:::i;:::-;;:::i;29437:44::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;29437:44:0;;;40148:482;;;;;;:::i;:::-;;:::i;30644:776::-;;;;;;:::i;:::-;;:::i;40885:260::-;;;;;;:::i;:::-;;:::i;26516:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26641:24:0;;;26617:4;26641:24;;;:16;:24;;;;;;;;:35;;;;;;;;;;;;;;;26516:168;38032:282;;;;;;:::i;:::-;;:::i;1827:109::-;;;;;;:::i;:::-;;:::i;23916:391::-;24004:7;24278:13;;;;;;;;;;;-1:-1:-1;;;;;24278:21:0;;;;;;;;;;23916:391;;;;;:::o;30104:479::-;30183:11;30217:5;;30215:7;;;;;:::i;:::-;;;;;-1:-1:-1;30233:13:0;;;;:8;:13;;;;;;;;:26;;-1:-1:-1;;;;;;30233:26:0;30249:10;30233:26;;;;;;30270:13;;;;;;:25;;;;;;;;:42;;;30376:73;;12874:51:1;;;12941:18;;;12934:34;;;30215:7:0;;-1:-1:-1;30215:7:0;;30249:10;30233:13;-1:-1:-1;;;;;;;;;;;30376:73:0;12847:18:1;30376:73:0;;;;;;;30466:22;;30462:114;;30514:9;;;;:4;:9;;;;;:16;;30526:4;;30514:16;:::i;:::-;;30560:3;30550:14;30554:4;;30550:14;;;;;;;:::i;:::-;;;;;;;;30462:114;30104:479;;;;;:::o;35906:285::-;36007:4;-1:-1:-1;;;;;;36028:39:0;;-1:-1:-1;;;36028:39:0;36024:160;;;-1:-1:-1;36091:4:0;;35906:285;-1:-1:-1;35906:285:0:o;36024:160::-;36135:37;36159:12;36135:23;:37::i;36024:160::-;35906:285;;;:::o;29490:39::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39040:452::-;39219:10;-1:-1:-1;;;;;39219:19:0;;;39215:167;;39260:9;39255:116;39275:15;;;39255:116;;;39316:39;39330:5;39336:4;;39341:1;39336:7;;;;;;;:::i;:::-;;;;;;;39344;;39352:1;39344:10;;;;;;;:::i;:::-;;;;;;;39316:13;:39::i;:::-;39292:3;;;:::i;:::-;;;39255:116;;;;39215:167;39392:62;39421:5;39428:3;39433:4;;39439:7;;39448:5;;39392:28;:62::i;:::-;39040:452;;;;;;;;:::o;25002:422::-;25119:16;25158:29;;;25150:38;;;;;;25201:26;25244:7;25230:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25230:29:0;;25201:58;;25277:9;25272:116;25292:18;;;25272:116;;;25347:8;:17;25356:4;;25361:1;25356:7;;;;;;;:::i;:::-;;;;;;;25347:17;;;;;;;;;;;:29;25365:7;;25373:1;25365:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;25347:29:0;-1:-1:-1;;;;;25347:29:0;;;;;;;;;;;;;25332:9;25342:1;25332:12;;;;;;;;:::i;:::-;;;;;;;;;;:44;25312:3;;;:::i;:::-;;;25272:116;;;-1:-1:-1;25407:9:0;-1:-1:-1;25002:422:0;;;;;;;:::o;34625:541::-;34753:10;34732:18;34792:32;34753:10;34820:3;34792:16;:32::i;:::-;34774:50;;34854:6;34843:7;:17;;34835:58;;;;-1:-1:-1;;;34835:58:0;;15188:2:1;34835:58:0;;;15170:21:1;15227:2;15207:18;;;15200:30;15266:31;15246:18;;;15239:59;15315:18;;34835:58:0;;;;;;;;;-1:-1:-1;;;;;34912:22:0;;;;;;;:10;:22;;;;;;;;:32;;;;;;;;;;;:37;;;;;;;:54;;34904:63;;;;;;-1:-1:-1;;;;;34978:22:0;;;;;;;:10;:22;;;;;;;;:32;;;;;;;;;;;:37;;;;;;:46;;;35045:39;35001:8;35079:4;35045:24;:39::i;:::-;35131:3;35121:8;-1:-1:-1;;;;;35100:58:0;35109:10;-1:-1:-1;;;;;35100:58:0;;35136:13;35151:6;35100:58;;;;;;18088:25:1;;;18144:2;18129:18;;18122:34;18076:2;18061:18;;17914:248;35100:58:0;;;;;;;;34721:445;;34625:541;;;;:::o;40638:109::-;40694:4;40842:17;;;:8;:17;;;;;;-1:-1:-1;;;;;40842:17:0;:31;;40720:16;40753:126;31977:142;29685:13;;;;:8;:13;;;;;;32049:3;;-1:-1:-1;;;;;29685:13:0;29702:10;29685:27;29677:36;;;;;;32065:9:::1;::::0;;;:4:::1;:9;::::0;;;;:16:::1;::::0;32077:4;;32065:16:::1;:::i;:::-;;32107:3;32097:14;32101:4;;32097:14;;;;;;;:::i;:::-;;;;;;;;31977:142:::0;;;;:::o;31502:467::-;31593:11;31627:5;;31625:7;;;;;:::i;:::-;;;;;-1:-1:-1;31643:13:0;;;;:8;:13;;;;;;;;:18;;-1:-1:-1;;;;;;31643:18:0;-1:-1:-1;;;;;31643:18:0;;;;;;;;31672:13;;;;;;:17;;;;;;;;:34;;;31770:65;;31785:10;12874:51:1;;12941:18;;;12934:34;;;31625:7:0;;-1:-1:-1;31625:7:0;;31643:18;:13;-1:-1:-1;;;;;;;;;;;31770:65:0;12847:18:1;31770:65:0;;;;;;;31852:22;;31848:114;;31900:9;;;;:4;:9;;;;;:16;;31912:4;;31900:16;:::i;:::-;;31946:3;31936:14;31940:4;;31936:14;;;;;;;:::i;:::-;;;;;;;;31502:467;;;;;;:::o;25786:222::-;25902:10;25885:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;25885:39:0;;;;;;;;;;;;:51;;-1:-1:-1;;25885:51:0;;;;;;;;;;25952:48;;13909:41:1;;;25885:39:0;;25902:10;25952:48;;13882:18:1;25952:48:0;;;;;;;25786:222;;:::o;39498:644::-;39566:4;5191:20;;39581:81;;-1:-1:-1;39647:5:0;;39498:644;-1:-1:-1;39498:644:0:o;39581:81::-;39676:11;39704:21;39743:12;-1:-1:-1;;;;;39728:33:0;;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39728:35:0;;;;;;;;;;;;:::i;:::-;39704:59;;39772:23;39813:12;-1:-1:-1;;;;;39798:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39798:37:0;;;;;;;;;;;;:::i;:::-;39772:63;;39940:5;;;;;;;;;;;;;-1:-1:-1;;;39940:5:0;;;39923:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;39913:34;;;;;;39900:7;39883:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;39873:36;;;;;;:74;39872:174;;;;;40036:7;;;;;;;;;;;;;-1:-1:-1;;;40036:7:0;;;40019:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;40009:36;;;;;;39994:9;39977:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;39967:38;;;;;;:78;39872:174;:237;;;;-1:-1:-1;40065:42:0;-1:-1:-1;;;40065:17:0;:42::i;:::-;39863:246;39498:644;-1:-1:-1;;;;;39498:644:0:o;32127:103::-;32213:9;;;;:4;:9;;;;;32206:16;;32181:13;;32213:9;32206:16;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32127:103;;;:::o;40148:482::-;40261:4;40842:17;;;:8;:17;;;;;;-1:-1:-1;;;;;40842:17:0;:31;;40277:44;;-1:-1:-1;;;;;;40299:21:0;;;40277:44;40274:90;;;-1:-1:-1;40344:5:0;40337:13;;40274:90;40370:15;40388:33;40405:7;40413;40388:16;:33::i;:::-;40370:51;;40442:5;40431:7;:16;40428:57;;40472:4;40465:12;;;;;40428:57;-1:-1:-1;;;;;;;40520:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;:35;;;;;;;:44;-1:-1:-1;40520:44:0;40148:482;;;;;;:::o;30644:776::-;29685:13;;;;:8;:13;;;;;;30748:3;;-1:-1:-1;;;;;29685:13:0;29702:10;29685:27;29677:36;;;;;;30771:9:::1;30766:647;30786:14:::0;;::::1;30766:647;;;30824:10;30837:3;;30841:1;30837:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;30824:19;;30858:16;30877:11;;30889:1;30877:14;;;;;;;:::i;:::-;30987:8;:13:::0;;;30877:14:::1;30987:13:::0;;;;;;;-1:-1:-1;;;;;30987:17:0;::::1;::::0;;;;;;;;30877:14;::::1;::::0;;;::::1;;::::0;-1:-1:-1;30974:31:0::1;::::0;30877:14;;-1:-1:-1;30974:12:0::1;:31::i;:::-;30954:8;:13:::0;;;::::1;::::0;;;;;;;-1:-1:-1;;;;;30954:17:0;::::1;::::0;;;;;;;;;:51;;;;31193:59;;31208:10:::1;12874:51:1::0;;12941:18;;;12934:34;;;30954:13:0;;:17;:8;-1:-1:-1;;;;;;;;;;;31193:59:0;12847:18:1;31193:59:0::1;;;;;;;-1:-1:-1::0;;;;;31273:13:0;::::1;5191:20:::0;5230:8;31269:133:::1;;31309:77;31340:10;31352;31364:2;31368:3;31373:8;31309:77;;;;;;;;;;;::::0;:30:::1;:77::i;:::-;30807:606;;30802:3;;;;:::i;:::-;;;30766:647;;;;30644:776:::0;;;;;;:::o;40885:260::-;40957:4;40842:17;;;:8;:17;;;;;;-1:-1:-1;;;;;40842:17:0;:31;;40972:42;;-1:-1:-1;;;;;;40994:19:0;;;40972:42;40969:88;;;-1:-1:-1;41037:5:0;41030:13;;40969:88;41063:15;41081:31;41098:5;41104:7;41081:16;:31::i;:::-;41126:12;;;40885:260;-1:-1:-1;;;;40885:260:0:o;38032:282::-;38179:31;38193:5;38199:3;38203:6;38179:13;:31::i;:::-;38221:55;38245:5;38252:3;38257;38262:6;38270:5;;38221:23;:55::i;:::-;38032:282;;;;;;:::o;1827:109::-;1122:6;;-1:-1:-1;;;;;1122:6:0;1108:10;:20;913:18;;;;;;1900:28:::1;1919:8;1900:18;:28::i;:::-;1827:109:::0;:::o;29741:285::-;29842:4;-1:-1:-1;;;;;;29863:39:0;;-1:-1:-1;;;29863:39:0;29859:160;;;-1:-1:-1;29926:4:0;;29741:285;-1:-1:-1;29741:285:0:o;29859:160::-;29970:37;29994:12;29970:23;:37::i;36199:400::-;36300:10;-1:-1:-1;;;;;36300:19:0;;;36296:296;;-1:-1:-1;;;;;36344:17:0;;;;;;:10;:17;;;;;;;;36362:10;36344:29;;;;;;;:34;;;;;;;;;:44;-1:-1:-1;36344:44:0;36336:83;;;;-1:-1:-1;;;36336:83:0;;16803:2:1;36336:83:0;;;16785:21:1;16842:2;16822:18;;;16815:30;16881:28;16861:18;;;16854:56;16927:18;;36336:83:0;16601:350:1;36336:83:0;-1:-1:-1;;;;;36471:17:0;;;;;;:10;:17;;;;;;;;36489:10;36471:29;;;;;;;:34;;;;;;;;;:46;;36510:6;36471:38;:46::i;:::-;-1:-1:-1;;;;;36434:17:0;;;;;;:10;:17;;;;;;;;36452:10;36434:29;;;;;;;:34;;;;;;;;:83;36296:296;36199:400;;;:::o;21859:1807::-;-1:-1:-1;;;;;22065:19:0;;22057:69;;;;-1:-1:-1;;;22057:69:0;;14782:2:1;22057:69:0;;;14764:21:1;14821:2;14801:18;;;14794:30;14860:34;14840:18;;;14833:62;-1:-1:-1;;;14911:18:1;;;14904:35;14956:19;;22057:69:0;14580:401:1;22057:69:0;22145:29;;;22137:83;;;;-1:-1:-1;;;22137:83:0;;16393:2:1;22137:83:0;;;16375:21:1;16432:2;16412:18;;;16405:30;16471:34;16451:18;;;16444:62;-1:-1:-1;;;16522:18:1;;;16515:39;16571:19;;22137:83:0;16191:405:1;22137:83:0;-1:-1:-1;;;;;22239:19:0;;22248:10;22239:19;;:66;;-1:-1:-1;;;;;;22262:23:0;;;;;;:16;:23;;;;;;;;22286:10;22262:35;;;;;;;;;;;:43;;;22239:66;22231:126;;;;-1:-1:-1;;;22231:126:0;;;;;;;:::i;:::-;22375:9;22370:388;22390:15;;;22370:388;;;22427:10;22440:4;;22445:1;22440:7;;;;;;;:::i;:::-;;;;;;;22427:20;;22462:13;22478:7;;22486:1;22478:10;;;;;;;:::i;:::-;;;;;;;22462:26;;22651:30;22675:5;22651:8;:12;22660:2;22651:12;;;;;;;;;;;:19;22664:5;-1:-1:-1;;;;;22651:19:0;-1:-1:-1;;;;;22651:19:0;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;22629:8;:12;22638:2;22629:12;;;;;;;;;;;:19;22642:5;-1:-1:-1;;;;;22629:19:0;-1:-1:-1;;;;;22629:19:0;;;;;;;;;;;;:52;;;;22718:28;22728:8;:12;22737:2;22728:12;;;;;;;;;;;:17;22741:3;-1:-1:-1;;;;;22728:17:0;-1:-1:-1;;;;;22728:17:0;;;;;;;;;;;;;22718:5;:9;;:28;;;;:::i;:::-;22696:8;:12;;;;;;;;;;;-1:-1:-1;;;;;22696:17:0;;;;;;;;;;:50;;;;-1:-1:-1;22407:3:0;;;:::i;:::-;;;22370:388;;;;23349:3;-1:-1:-1;;;;;23316:52:0;23342:5;-1:-1:-1;;;;;23316:52:0;23330:10;-1:-1:-1;;;;;23316:52:0;;23354:4;;23360:7;;23316:52;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;23533:14:0;;5191:20;5230:8;23529:130;;23566:81;23602:10;23614:5;23621:3;23626:4;;23566:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23566:81:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23632:7:0;;-1:-1:-1;23632:7:0;;;;23566:81;;;23632:7;;23566:81;23632:7;23566:81;;;;;;;;;-1:-1:-1;;23566:81:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23641:5:0;;-1:-1:-1;23641:5:0;;;;23566:81;;23641:5;;;;23566:81;;;;;;;;;-1:-1:-1;23566:35:0;;-1:-1:-1;;;23566:81:0:i;4012:141::-;4070:9;4096:5;4100:1;4096;:5;:::i;:::-;4092:9;;4124:1;4119;:6;;4112:14;;;;:::i;26795:1137::-;27761:81;;-1:-1:-1;;;27761:81:0;;;27846:16;-1:-1:-1;;;;;27761:43:0;;;2426:10;;27761:81;;27805:9;;27816:5;;27823:3;;27828:6;;27836:5;;27761:81;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;27761:101:0;;27753:171;;;;-1:-1:-1;;;27753:171:0;;17158:2:1;27753:171:0;;;17140:21:1;17197:2;17177:18;;;17170:30;17236:34;17216:18;;;17209:62;17307:27;17287:18;;;17280:55;17352:19;;27753:171:0;16956:421:1;19019:954:0;-1:-1:-1;;;;;19163:19:0;;19155:53;;;;-1:-1:-1;;;19155:53:0;;17584:2:1;19155:53:0;;;17566:21:1;17623:2;17603:18;;;17596:30;-1:-1:-1;;;17642:18:1;;;17635:51;17703:18;;19155:53:0;17382:345:1;19155:53:0;-1:-1:-1;;;;;19227:19:0;;19236:10;19227:19;;:66;;-1:-1:-1;;;;;;19250:23:0;;;;;;:16;:23;;;;;;;;19274:10;19250:35;;;;;;;;;;;:43;;;19227:66;19219:126;;;;-1:-1:-1;;;19219:126:0;;;;;;;:::i;:::-;19497:8;:13;;;;;;;;;;;-1:-1:-1;;;;;19497:20:0;;;;;;;;;;:32;;19522:6;19497:24;:32::i;:::-;19474:8;:13;;;;;;;;;;;-1:-1:-1;;;;;19474:20:0;;;;;;;;;;:55;;;;19574:18;;;;;;19563:30;;:6;;:10;:30::i;:::-;19540:8;:13;;;;;;;;;;;-1:-1:-1;;;;;19540:18:0;;;;;;;;;;;;;:53;;;;19639:51;;19654:10;12874:51:1;;12941:18;;;12934:34;;;19540:13:0;;:18;19639:51;;;-1:-1:-1;;;;;;;;;;;19639:51:0;12847:18:1;19639:51:0;;;;;;;-1:-1:-1;;;;;19847:14:0;;5191:20;5230:8;19843:123;;19880:74;19911:10;19923:5;19930:3;19935;19940:6;19948:5;;19880:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19880:30:0;;-1:-1:-1;;;19880:74:0:i;2086:187::-;-1:-1:-1;;;;;2160:22:0;;2152:31;;;;;;2220:6;;2199:38;;-1:-1:-1;;;;;2199:38:0;;;;2220:6;;2199:38;;2220:6;;2199:38;2248:6;:17;;-1:-1:-1;;;;;;2248:17:0;-1:-1:-1;;;;;2248:17:0;;;;;;;;;;2086:187::o;17255:300::-;17356:4;-1:-1:-1;;;;;;17378:42:0;;-1:-1:-1;;;17378:42:0;;:103;;-1:-1:-1;;;;;;;17438:43:0;;-1:-1:-1;;;17438:43:0;17378:103;17374:148;;;-1:-1:-1;17505:4:0;;17255:300;-1:-1:-1;17255:300:0:o;17374:148::-;-1:-1:-1;17542:5:0;;17255:300;-1:-1:-1;17255:300:0:o;3814:123::-;3872:7;3904:1;3899;:6;;3892:14;;;;:::i;:::-;3924:5;3928:1;3924;:5;:::i;27940:1189::-;28940:88;;-1:-1:-1;;;28940:88:0;;;29032:22;-1:-1:-1;;;;;28940:48:0;;;2574:10;;28940:88;;28989:9;;29000:5;;29007:4;;29013:7;;29022:5;;28940:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;28940:114:0;;28932:189;;;;-1:-1:-1;;;28932:189:0;;15962:2:1;28932:189:0;;;15944:21:1;16001:2;15981:18;;;15974:30;16040:34;16020:18;;;16013:62;16111:32;16091:18;;;16084:60;16161:19;;28932:189:0;15760:426:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:367;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:347::-;615:8;625:6;679:3;672:4;664:6;660:17;656:27;646:55;;697:1;694;687:12;646:55;-1:-1:-1;720:20:1;;763:18;752:30;;749:50;;;795:1;792;785:12;749:50;832:4;824:6;820:17;808:29;;884:3;877:4;868:6;860;856:19;852:30;849:39;846:59;;;901:1;898;891:12;916:186;975:6;1028:2;1016:9;1007:7;1003:23;999:32;996:52;;;1044:1;1041;1034:12;996:52;1067:29;1086:9;1067:29;:::i;1107:260::-;1175:6;1183;1236:2;1224:9;1215:7;1211:23;1207:32;1204:52;;;1252:1;1249;1242:12;1204:52;1275:29;1294:9;1275:29;:::i;:::-;1265:39;;1323:38;1357:2;1346:9;1342:18;1323:38;:::i;:::-;1313:48;;1107:260;;;;;:::o;1372:1210::-;1532:6;1540;1548;1556;1564;1572;1580;1588;1641:3;1629:9;1620:7;1616:23;1612:33;1609:53;;;1658:1;1655;1648:12;1609:53;1681:29;1700:9;1681:29;:::i;:::-;1671:39;;1729:38;1763:2;1752:9;1748:18;1729:38;:::i;:::-;1719:48;;1818:2;1807:9;1803:18;1790:32;1841:18;1882:2;1874:6;1871:14;1868:34;;;1898:1;1895;1888:12;1868:34;1937:70;1999:7;1990:6;1979:9;1975:22;1937:70;:::i;:::-;2026:8;;-1:-1:-1;1911:96:1;-1:-1:-1;2114:2:1;2099:18;;2086:32;;-1:-1:-1;2130:16:1;;;2127:36;;;2159:1;2156;2149:12;2127:36;2198:72;2262:7;2251:8;2240:9;2236:24;2198:72;:::i;:::-;2289:8;;-1:-1:-1;2172:98:1;-1:-1:-1;2377:3:1;2362:19;;2349:33;;-1:-1:-1;2394:16:1;;;2391:36;;;2423:1;2420;2413:12;2391:36;;2462:60;2514:7;2503:8;2492:9;2488:24;2462:60;:::i;:::-;1372:1210;;;;-1:-1:-1;1372:1210:1;;-1:-1:-1;1372:1210:1;;;;;;2541:8;-1:-1:-1;;;1372:1210:1:o;2587:328::-;2664:6;2672;2680;2733:2;2721:9;2712:7;2708:23;2704:32;2701:52;;;2749:1;2746;2739:12;2701:52;2772:29;2791:9;2772:29;:::i;:::-;2762:39;;2820:38;2854:2;2843:9;2839:18;2820:38;:::i;:::-;2810:48;;2905:2;2894:9;2890:18;2877:32;2867:42;;2587:328;;;;;:::o;2920:397::-;3006:6;3014;3022;3030;3083:3;3071:9;3062:7;3058:23;3054:33;3051:53;;;3100:1;3097;3090:12;3051:53;3123:29;3142:9;3123:29;:::i;:::-;3113:39;;3171:38;3205:2;3194:9;3190:18;3171:38;:::i;:::-;2920:397;;3161:48;;-1:-1:-1;;;;3256:2:1;3241:18;;3228:32;;3307:2;3292:18;3279:32;;2920:397::o;3322:695::-;3428:6;3436;3444;3452;3460;3468;3521:3;3509:9;3500:7;3496:23;3492:33;3489:53;;;3538:1;3535;3528:12;3489:53;3561:29;3580:9;3561:29;:::i;:::-;3551:39;;3609:38;3643:2;3632:9;3628:18;3609:38;:::i;:::-;3599:48;;3694:2;3683:9;3679:18;3666:32;3656:42;;3745:2;3734:9;3730:18;3717:32;3707:42;;3800:3;3789:9;3785:19;3772:33;3828:18;3820:6;3817:30;3814:50;;;3860:1;3857;3850:12;3814:50;3899:58;3949:7;3940:6;3929:9;3925:22;3899:58;:::i;:::-;3322:695;;;;-1:-1:-1;3322:695:1;;-1:-1:-1;3322:695:1;;3976:8;;3322:695;-1:-1:-1;;;3322:695:1:o;4022:347::-;4087:6;4095;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4187:29;4206:9;4187:29;:::i;:::-;4177:39;;4266:2;4255:9;4251:18;4238:32;4313:5;4306:13;4299:21;4292:5;4289:32;4279:60;;4335:1;4332;4325:12;4279:60;4358:5;4348:15;;;4022:347;;;;;:::o;4374:254::-;4442:6;4450;4503:2;4491:9;4482:7;4478:23;4474:32;4471:52;;;4519:1;4516;4509:12;4471:52;4542:29;4561:9;4542:29;:::i;:::-;4532:39;4618:2;4603:18;;;;4590:32;;-1:-1:-1;;;4374:254:1:o;4633:552::-;4722:6;4730;4738;4746;4799:2;4787:9;4778:7;4774:23;4770:32;4767:52;;;4815:1;4812;4805:12;4767:52;4838:29;4857:9;4838:29;:::i;:::-;4828:39;;4914:2;4903:9;4899:18;4886:32;4876:42;;4969:2;4958:9;4954:18;4941:32;4996:18;4988:6;4985:30;4982:50;;;5028:1;5025;5018:12;4982:50;5067:58;5117:7;5108:6;5097:9;5093:22;5067:58;:::i;:::-;4633:552;;;;-1:-1:-1;5144:8:1;-1:-1:-1;;;;4633:552:1:o;5190:391::-;5276:6;5284;5292;5300;5353:3;5341:9;5332:7;5328:23;5324:33;5321:53;;;5370:1;5367;5360:12;5321:53;5393:29;5412:9;5393:29;:::i;:::-;5383:39;5469:2;5454:18;;5441:32;;-1:-1:-1;5520:2:1;5505:18;;5492:32;;5571:2;5556:18;5543:32;;-1:-1:-1;5190:391:1;-1:-1:-1;;;5190:391:1:o;5586:773::-;5708:6;5716;5724;5732;5785:2;5773:9;5764:7;5760:23;5756:32;5753:52;;;5801:1;5798;5791:12;5753:52;5841:9;5828:23;5870:18;5911:2;5903:6;5900:14;5897:34;;;5927:1;5924;5917:12;5897:34;5966:70;6028:7;6019:6;6008:9;6004:22;5966:70;:::i;:::-;6055:8;;-1:-1:-1;5940:96:1;-1:-1:-1;6143:2:1;6128:18;;6115:32;;-1:-1:-1;6159:16:1;;;6156:36;;;6188:1;6185;6178:12;6156:36;;6227:72;6291:7;6280:8;6269:9;6265:24;6227:72;:::i;6364:245::-;6422:6;6475:2;6463:9;6454:7;6450:23;6446:32;6443:52;;;6491:1;6488;6481:12;6443:52;6530:9;6517:23;6549:30;6573:5;6549:30;:::i;6614:249::-;6683:6;6736:2;6724:9;6715:7;6711:23;6707:32;6704:52;;;6752:1;6749;6742:12;6704:52;6784:9;6778:16;6803:30;6827:5;6803:30;:::i;6868:478::-;6948:6;6956;6964;7017:2;7005:9;6996:7;6992:23;6988:32;6985:52;;;7033:1;7030;7023:12;6985:52;7073:9;7060:23;7106:18;7098:6;7095:30;7092:50;;;7138:1;7135;7128:12;7092:50;7177:58;7227:7;7218:6;7207:9;7203:22;7177:58;:::i;:::-;7254:8;;7151:84;;-1:-1:-1;7336:2:1;7321:18;;;;7308:32;;6868:478;-1:-1:-1;;;;6868:478:1:o;7351:884::-;7431:6;7484:2;7472:9;7463:7;7459:23;7455:32;7452:52;;;7500:1;7497;7490:12;7452:52;7533:9;7527:16;7562:18;7603:2;7595:6;7592:14;7589:34;;;7619:1;7616;7609:12;7589:34;7657:6;7646:9;7642:22;7632:32;;7702:7;7695:4;7691:2;7687:13;7683:27;7673:55;;7724:1;7721;7714:12;7673:55;7753:2;7747:9;7775:2;7771;7768:10;7765:36;;;7781:18;;:::i;:::-;7856:2;7850:9;7824:2;7910:13;;-1:-1:-1;;7906:22:1;;;7930:2;7902:31;7898:40;7886:53;;;7954:18;;;7974:22;;;7951:46;7948:72;;;8000:18;;:::i;:::-;8040:10;8036:2;8029:22;8075:2;8067:6;8060:18;8115:7;8110:2;8105;8101;8097:11;8093:20;8090:33;8087:53;;;8136:1;8133;8126:12;8087:53;8149:55;8201:2;8196;8188:6;8184:15;8179:2;8175;8171:11;8149:55;:::i;:::-;8223:6;7351:884;-1:-1:-1;;;;;;;7351:884:1:o;8240:180::-;8299:6;8352:2;8340:9;8331:7;8327:23;8323:32;8320:52;;;8368:1;8365;8358:12;8320:52;-1:-1:-1;8391:23:1;;8240:180;-1:-1:-1;8240:180:1:o;8425:841::-;8556:6;8564;8572;8580;8588;8641:2;8629:9;8620:7;8616:23;8612:32;8609:52;;;8657:1;8654;8647:12;8609:52;8693:9;8680:23;8670:33;;8754:2;8743:9;8739:18;8726:32;8777:18;8818:2;8810:6;8807:14;8804:34;;;8834:1;8831;8824:12;8804:34;8873:70;8935:7;8926:6;8915:9;8911:22;8873:70;:::i;:::-;8962:8;;-1:-1:-1;8847:96:1;-1:-1:-1;9050:2:1;9035:18;;9022:32;;-1:-1:-1;9066:16:1;;;9063:36;;;9095:1;9092;9085:12;9063:36;;9134:72;9198:7;9187:8;9176:9;9172:24;9134:72;:::i;:::-;8425:841;;;;-1:-1:-1;8425:841:1;;-1:-1:-1;9225:8:1;;9108:98;8425:841;-1:-1:-1;;;8425:841:1:o;9271:478::-;9351:6;9359;9367;9420:2;9408:9;9399:7;9395:23;9391:32;9388:52;;;9436:1;9433;9426:12;9388:52;9472:9;9459:23;9449:33;;9533:2;9522:9;9518:18;9505:32;9560:18;9552:6;9549:30;9546:50;;;9592:1;9589;9582:12;9546:50;9631:58;9681:7;9672:6;9661:9;9657:22;9631:58;:::i;:::-;9271:478;;9708:8;;-1:-1:-1;9605:84:1;;-1:-1:-1;;;;9271:478:1:o;9754:354::-;9842:19;;;9824:3;-1:-1:-1;;;;;9873:31:1;;9870:51;;;9917:1;9914;9907:12;9870:51;9953:6;9950:1;9946:14;10005:8;9998:5;9991:4;9986:3;9982:14;9969:45;10082:1;10037:18;;10057:4;10033:29;10071:13;;;-1:-1:-1;10033:29:1;;9754:354;-1:-1:-1;;9754:354:1:o;10113:435::-;10166:3;10204:5;10198:12;10231:6;10226:3;10219:19;10257:4;10286:2;10281:3;10277:12;10270:19;;10323:2;10316:5;10312:14;10344:1;10354:169;10368:6;10365:1;10362:13;10354:169;;;10429:13;;10417:26;;10463:12;;;;10498:15;;;;10390:1;10383:9;10354:169;;;-1:-1:-1;10539:3:1;;10113:435;-1:-1:-1;;;;;10113:435:1:o;10553:257::-;10594:3;10632:5;10626:12;10659:6;10654:3;10647:19;10675:63;10731:6;10724:4;10719:3;10715:14;10708:4;10701:5;10697:16;10675:63;:::i;:::-;10792:2;10771:15;-1:-1:-1;;10767:29:1;10758:39;;;;10799:4;10754:50;;10553:257;-1:-1:-1;;10553:257:1:o;10815:276::-;10946:3;10984:6;10978:13;11000:53;11046:6;11041:3;11034:4;11026:6;11022:17;11000:53;:::i;:::-;11069:16;;;;;10815:276;-1:-1:-1;;10815:276:1:o;11304:826::-;-1:-1:-1;;;;;11701:15:1;;;11683:34;;11753:15;;11748:2;11733:18;;11726:43;11663:3;11800:2;11785:18;;11778:31;;;11626:4;;11832:57;;11869:19;;11861:6;11832:57;:::i;:::-;11937:9;11929:6;11925:22;11920:2;11909:9;11905:18;11898:50;11971:44;12008:6;12000;11971:44;:::i;:::-;11957:58;;12064:9;12056:6;12052:22;12046:3;12035:9;12031:19;12024:51;12092:32;12117:6;12109;12092:32;:::i;:::-;12084:40;11304:826;-1:-1:-1;;;;;;;;11304:826:1:o;12135:560::-;-1:-1:-1;;;;;12432:15:1;;;12414:34;;12484:15;;12479:2;12464:18;;12457:43;12531:2;12516:18;;12509:34;;;12574:2;12559:18;;12552:34;;;12394:3;12617;12602:19;;12595:32;;;12357:4;;12644:45;;12669:19;;12661:6;12644:45;:::i;12979:519::-;13256:2;13245:9;13238:21;13219:4;13282:73;13351:2;13340:9;13336:18;13328:6;13320;13282:73;:::i;:::-;13403:9;13395:6;13391:22;13386:2;13375:9;13371:18;13364:50;13431:61;13485:6;13477;13469;13431:61;:::i;13503:261::-;13682:2;13671:9;13664:21;13645:4;13702:56;13754:2;13743:9;13739:18;13731:6;13702:56;:::i;13961:390::-;14120:2;14109:9;14102:21;14159:6;14154:2;14143:9;14139:18;14132:34;14216:6;14208;14203:2;14192:9;14188:18;14175:48;14272:1;14243:22;;;14267:2;14239:31;;;14232:42;;;;14335:2;14314:15;;;-1:-1:-1;;14310:29:1;14295:45;14291:54;;13961:390;-1:-1:-1;13961:390:1:o;14356:219::-;14505:2;14494:9;14487:21;14468:4;14525:44;14565:2;14554:9;14550:18;14542:6;14525:44;:::i;15344:411::-;15546:2;15528:21;;;15585:2;15565:18;;;15558:30;15624:34;15619:2;15604:18;;15597:62;-1:-1:-1;;;15690:2:1;15675:18;;15668:45;15745:3;15730:19;;15344:411::o;18167:128::-;18207:3;18238:1;18234:6;18231:1;18228:13;18225:39;;;18244:18;;:::i;:::-;-1:-1:-1;18280:9:1;;18167:128::o;18300:125::-;18340:4;18368:1;18365;18362:8;18359:34;;;18373:18;;:::i;:::-;-1:-1:-1;18410:9:1;;18300:125::o;18430:258::-;18502:1;18512:113;18526:6;18523:1;18520:13;18512:113;;;18602:11;;;18596:18;18583:11;;;18576:39;18548:2;18541:10;18512:113;;;18643:6;18640:1;18637:13;18634:48;;;18678:1;18669:6;18664:3;18660:16;18653:27;18634:48;;18430:258;;;:::o;18693:380::-;18772:1;18768:12;;;;18815;;;18836:61;;18890:4;18882:6;18878:17;18868:27;;18836:61;18943:2;18935:6;18932:14;18912:18;18909:38;18906:161;;;18989:10;18984:3;18980:20;18977:1;18970:31;19024:4;19021:1;19014:15;19052:4;19049:1;19042:15;18906:161;;18693:380;;;:::o;19078:135::-;19117:3;-1:-1:-1;;19138:17:1;;19135:43;;;19158:18;;:::i;:::-;-1:-1:-1;19205:1:1;19194:13;;19078:135::o;19218:127::-;19279:10;19274:3;19270:20;19267:1;19260:31;19310:4;19307:1;19300:15;19334:4;19331:1;19324:15;19350:127;19411:10;19406:3;19402:20;19399:1;19392:31;19442:4;19439:1;19432:15;19466:4;19463:1;19456:15;19482:127;19543:10;19538:3;19534:20;19531:1;19524:31;19574:4;19571:1;19564:15;19598:4;19595:1;19588:15;19614:127;19675:10;19670:3;19666:20;19663:1;19656:31;19706:4;19703:1;19696:15;19730:4;19727:1;19720:15;19746:131;-1:-1:-1;;;;;;19820:32:1;;19810:43;;19800:71;;19867:1;19864;19857:12

Swarm Source

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