ETH Price: $2,703.34 (-1.31%)

Token

dMMM (dMMM)
 

Overview

Max Total Supply

58,312,000.96752805 dMMM

Holders

496

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 dMMM

Value
$0.00
0x9063321f78e16f3e7dc978375244de8654eadaf2
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:
MMM

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-04
*/

// File: @openzeppelin/contracts/token/ERC777/IERC777.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC777Token standard as defined in the EIP.
 *
 * This contract uses the
 * [ERC1820 registry standard](https://eips.ethereum.org/EIPS/eip-1820) to let
 * token holders and recipients react to token movements by using setting implementers
 * for the associated interfaces in said registry. See `IERC1820Registry` and
 * `ERC1820Implementer`.
 */
interface IERC777 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the smallest part of the token that is not divisible. This
     * means all token operations (creation, movement and destruction) must have
     * amounts that are a multiple of this number.
     *
     * For most token contracts, this value will equal 1.
     */
    function granularity() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * If send or receive hooks are registered for the caller and `recipient`,
     * the corresponding functions will be called with `data` and empty
     * `operatorData`. See `IERC777Sender` and `IERC777Recipient`.
     *
     * Emits a `Sent` event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the `tokensReceived`
     * interface.
     */
    function send(address recipient, uint256 amount, bytes calldata data) external;

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the
     * total supply.
     *
     * If a send hook is registered for the caller, the corresponding function
     * will be called with `data` and empty `operatorData`. See `IERC777Sender`.
     *
     * Emits a `Burned` event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     */
    function burn(uint256 amount, bytes calldata data) external;

    /**
     * @dev Returns true if an account is an operator of `tokenHolder`.
     * Operators can send and burn tokens on behalf of their owners. All
     * accounts are their own operator.
     *
     * See `operatorSend` and `operatorBurn`.
     */
    function isOperatorFor(address operator, address tokenHolder) external view returns (bool);

    /**
     * @dev Make an account an operator of the caller.
     *
     * See `isOperatorFor`.
     *
     * Emits an `AuthorizedOperator` event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function authorizeOperator(address operator) external;

    /**
     * @dev Make an account an operator of the caller.
     *
     * See `isOperatorFor` and `defaultOperators`.
     *
     * Emits a `RevokedOperator` event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function revokeOperator(address operator) external;

    /**
     * @dev Returns the list of default operators. These accounts are operators
     * for all token holders, even if `authorizeOperator` was never called on
     * them.
     *
     * This list is immutable, but individual holders may revoke these via
     * `revokeOperator`, in which case `isOperatorFor` will return false.
     */
    function defaultOperators() external view returns (address[] memory);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must
     * be an operator of `sender`.
     *
     * If send or receive hooks are registered for `sender` and `recipient`,
     * the corresponding functions will be called with `data` and
     * `operatorData`. See `IERC777Sender` and `IERC777Recipient`.
     *
     * Emits a `Sent` event.
     *
     * Requirements
     *
     * - `sender` cannot be the zero address.
     * - `sender` must have at least `amount` tokens.
     * - the caller must be an operator for `sender`.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the `tokensReceived`
     * interface.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    /**
     * @dev Destoys `amount` tokens from `account`, reducing the total supply.
     * The caller must be an operator of `account`.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with `data` and `operatorData`. See `IERC777Sender`.
     *
     * Emits a `Burned` event.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     * - the caller must be an operator for `account`.
     */
    function operatorBurn(
        address account,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    event Sent(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256 amount,
        bytes data,
        bytes operatorData
    );

    event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData);

    event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData);

    event AuthorizedOperator(address indexed operator, address indexed tokenHolder);

    event RevokedOperator(address indexed operator, address indexed tokenHolder);
}

// File: @openzeppelin/contracts/token/ERC777/IERC777Recipient.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP.
 *
 * Accounts can be notified of `IERC777` tokens being sent to them by having a
 * contract implement this interface (contract holders can be their own
 * implementer) and registering it on the
 * [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820).
 *
 * See `IERC1820Registry` and `ERC1820Implementer`.
 */
interface IERC777Recipient {
    /**
     * @dev Called by an `IERC777` token contract whenever tokens are being
     * moved or created into a registered account (`to`). The type of operation
     * is conveyed by `from` being the zero address or not.
     *
     * This call occurs _after_ the token contract's state is updated, so
     * `IERC777.balanceOf`, etc., can be used to query the post-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensReceived(
        address operator,
        address from,
        address to,
        uint amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

// File: @openzeppelin/contracts/token/ERC777/IERC777Sender.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC777TokensSender standard as defined in the EIP.
 *
 * `IERC777` Token holders can be notified of operations performed on their
 * tokens by having a contract implement this interface (contract holders can be
 *  their own implementer) and registering it on the
 * [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820).
 *
 * See `IERC1820Registry` and `ERC1820Implementer`.
 */
interface IERC777Sender {
    /**
     * @dev Called by an `IERC777` token contract whenever a registered holder's
     * (`from`) tokens are about to be moved or destroyed. The type of operation
     * is conveyed by `to` being the zero address or not.
     *
     * This call occurs _before_ the token contract's state is updated, so
     * `IERC777.balanceOf`, etc., can be used to query the pre-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensToSend(
        address operator,
        address from,
        address to,
        uint amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

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

        return c;
    }

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

        return c;
    }

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

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

        return c;
    }

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

        return c;
    }

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

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.5.0;

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

// File: @openzeppelin/contracts/introspection/IERC1820Registry.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the global ERC1820 Registry, as defined in the
 * [EIP](https://eips.ethereum.org/EIPS/eip-1820). Accounts may register
 * implementers for interfaces in this registry, as well as query support.
 *
 * Implementers may be shared by multiple accounts, and can also implement more
 * than a single interface for each account. Contracts can implement interfaces
 * for themselves, but externally-owned accounts (EOA) must delegate this to a
 * contract.
 *
 * `IERC165` interfaces can also be queried via the registry.
 *
 * For an in-depth explanation and source code analysis, see the EIP text.
 */
interface IERC1820Registry {
    /**
     * @dev Sets `newManager` as the manager for `account`. A manager of an
     * account is able to set interface implementers for it.
     *
     * By default, each account is its own manager. Passing a value of `0x0` in
     * `newManager` will reset the manager to this initial state.
     *
     * Emits a `ManagerChanged` event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     */
    function setManager(address account, address newManager) external;

    /**
     * @dev Returns the manager for `account`.
     *
     * See `setManager`.
     */
    function getManager(address account) external view returns (address);

    /**
     * @dev Sets the `implementer` contract as `account`'s implementer for
     * `interfaceHash`.
     *
     * `account` being the zero address is an alias for the caller's address.
     * The zero address can also be used in `implementer` to remove an old one.
     *
     * See `interfaceHash` to learn how these are created.
     *
     * Emits an `InterfaceImplementerSet` event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     * - `interfaceHash` must not be an `IERC165` interface id (i.e. it must not
     * end in 28 zeroes).
     * - `implementer` must implement `IERC1820Implementer` and return true when
     * queried for support, unless `implementer` is the caller. See
     * `IERC1820Implementer.canImplementInterfaceForAddress`.
     */
    function setInterfaceImplementer(address account, bytes32 interfaceHash, address implementer) external;

    /**
     * @dev Returns the implementer of `interfaceHash` for `account`. If no such
     * implementer is registered, returns the zero address.
     *
     * If `interfaceHash` is an `IERC165` interface id (i.e. it ends with 28
     * zeroes), `account` will be queried for support of it.
     *
     * `account` being the zero address is an alias for the caller's address.
     */
    function getInterfaceImplementer(address account, bytes32 interfaceHash) external view returns (address);

    /**
     * @dev Returns the interface hash for an `interfaceName`, as defined in the
     * corresponding
     * [section of the EIP](https://eips.ethereum.org/EIPS/eip-1820#interface-name).
     */
    function interfaceHash(string calldata interfaceName) external pure returns (bytes32);

    /**
     *  @notice Updates the cache with whether the contract implements an ERC165 interface or not.
     *  @param account Address of the contract for which to update the cache.
     *  @param interfaceId ERC165 interface for which to update the cache.
     */
    function updateERC165Cache(address account, bytes4 interfaceId) external;

    /**
     *  @notice Checks whether a contract implements an ERC165 interface or not.
     *  If the result is not cached a direct lookup on the contract address is performed.
     *  If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling
     *  'updateERC165Cache' with the contract address.
     *  @param account Address of the contract to check.
     *  @param interfaceId ERC165 interface to check.
     *  @return True if `account.address()` implements `interfaceId`, false otherwise.
     */
    function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool);

    /**
     *  @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache.
     *  @param account Address of the contract to check.
     *  @param interfaceId ERC165 interface to check.
     *  @return True if `account.address()` implements `interfaceId`, false otherwise.
     */
    function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool);

    event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer);

    event ManagerChanged(address indexed account, address indexed newManager);
}

// File: @openzeppelin/contracts/token/ERC777/ERC777.sol

pragma solidity ^0.5.0;








/**
 * @dev Implementation of the `IERC777` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 *
 * Support for ERC20 is included in this contract, as specified by the EIP: both
 * the ERC777 and ERC20 interfaces can be safely used when interacting with it.
 * Both `IERC777.Sent` and `IERC20.Transfer` events are emitted on token
 * movements.
 *
 * Additionally, the `granularity` value is hard-coded to `1`, meaning that there
 * are no special restrictions in the amount of tokens that created, moved, or
 * destroyed. This makes integration with ERC20 applications seamless.
 */
contract ERC777 is IERC777, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    IERC1820Registry private _erc1820 = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24);

    mapping(address => uint256) private _balances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // We inline the result of the following hashes because Solidity doesn't resolve them at compile time.
    // See https://github.com/ethereum/solidity/issues/4024.

    // keccak256("ERC777TokensSender")
    bytes32 constant private TOKENS_SENDER_INTERFACE_HASH =
        0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895;

    // keccak256("ERC777TokensRecipient")
    bytes32 constant private TOKENS_RECIPIENT_INTERFACE_HASH =
        0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b;

    // This isn't ever read from - it's only used to respond to the defaultOperators query.
    address[] private _defaultOperatorsArray;

    // Immutable, but accounts may revoke them (tracked in __revokedDefaultOperators).
    mapping(address => bool) private _defaultOperators;

    // For each account, a mapping of its operators and revoked default operators.
    mapping(address => mapping(address => bool)) private _operators;
    mapping(address => mapping(address => bool)) private _revokedDefaultOperators;

    // ERC20-allowances
    mapping (address => mapping (address => uint256)) private _allowances;

    /**
     * @dev `defaultOperators` may be an empty array.
     */
    constructor(
        string memory name,
        string memory symbol,
        address[] memory defaultOperators
    ) public {
        _name = name;
        _symbol = symbol;

        _defaultOperatorsArray = defaultOperators;
        for (uint256 i = 0; i < _defaultOperatorsArray.length; i++) {
            _defaultOperators[_defaultOperatorsArray[i]] = true;
        }

        // register interfaces
        _erc1820.setInterfaceImplementer(address(this), keccak256("ERC777Token"), address(this));
        _erc1820.setInterfaceImplementer(address(this), keccak256("ERC20Token"), address(this));
    }

    /**
     * @dev See `IERC777.name`.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev See `IERC777.symbol`.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See `ERC20Detailed.decimals`.
     *
     * Always returns 18, as per the
     * [ERC777 EIP](https://eips.ethereum.org/EIPS/eip-777#backward-compatibility).
     */
    function decimals() public pure returns (uint8) {
        return 18;
    }

    /**
     * @dev See `IERC777.granularity`.
     *
     * This implementation always returns `1`.
     */
    function granularity() public view returns (uint256) {
        return 1;
    }

    /**
     * @dev See `IERC777.totalSupply`.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Returns the amount of tokens owned by an account (`tokenHolder`).
     */
    function balanceOf(address tokenHolder) public view returns (uint256) {
        return _balances[tokenHolder];
    }

    /**
     * @dev See `IERC777.send`.
     *
     * Also emits a `Transfer` event for ERC20 compatibility.
     */
    function send(address recipient, uint256 amount, bytes calldata data) external {
        _send(msg.sender, msg.sender, recipient, amount, data, "", true);
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Unlike `send`, `recipient` is _not_ required to implement the `tokensReceived`
     * interface if it is a contract.
     *
     * Also emits a `Sent` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool) {
        require(recipient != address(0), "ERC777: transfer to the zero address");

        address from = msg.sender;

        _callTokensToSend(from, from, recipient, amount, "", "");

        _move(from, from, recipient, amount, "", "");

        _callTokensReceived(from, from, recipient, amount, "", "", false);

        return true;
    }

    /**
     * @dev See `IERC777.burn`.
     *
     * Also emits a `Transfer` event for ERC20 compatibility.
     */
    function burn(uint256 amount, bytes calldata data) external {
        _burn(msg.sender, msg.sender, amount, data, "");
    }

    /**
     * @dev See `IERC777.isOperatorFor`.
     */
    function isOperatorFor(
        address operator,
        address tokenHolder
    ) public view returns (bool) {
        return operator == tokenHolder ||
            (_defaultOperators[operator] && !_revokedDefaultOperators[tokenHolder][operator]) ||
            _operators[tokenHolder][operator];
    }

    /**
     * @dev See `IERC777.authorizeOperator`.
     */
    function authorizeOperator(address operator) external {
        require(msg.sender != operator, "ERC777: authorizing self as operator");

        if (_defaultOperators[operator]) {
            delete _revokedDefaultOperators[msg.sender][operator];
        } else {
            _operators[msg.sender][operator] = true;
        }

        emit AuthorizedOperator(operator, msg.sender);
    }

    /**
     * @dev See `IERC777.revokeOperator`.
     */
    function revokeOperator(address operator) external {
        require(operator != msg.sender, "ERC777: revoking self as operator");

        if (_defaultOperators[operator]) {
            _revokedDefaultOperators[msg.sender][operator] = true;
        } else {
            delete _operators[msg.sender][operator];
        }

        emit RevokedOperator(operator, msg.sender);
    }

    /**
     * @dev See `IERC777.defaultOperators`.
     */
    function defaultOperators() public view returns (address[] memory) {
        return _defaultOperatorsArray;
    }

    /**
     * @dev See `IERC777.operatorSend`.
     *
     * Emits `Sent` and `Transfer` events.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    )
    external
    {
        require(isOperatorFor(msg.sender, sender), "ERC777: caller is not an operator for holder");
        _send(msg.sender, sender, recipient, amount, data, operatorData, true);
    }

    /**
     * @dev See `IERC777.operatorBurn`.
     *
     * Emits `Sent` and `Transfer` events.
     */
    function operatorBurn(address account, uint256 amount, bytes calldata data, bytes calldata operatorData) external {
        require(isOperatorFor(msg.sender, account), "ERC777: caller is not an operator for holder");
        _burn(msg.sender, account, amount, data, operatorData);
    }

    /**
     * @dev See `IERC20.allowance`.
     *
     * Note that operator and allowance concepts are orthogonal: operators may
     * not have allowance, and accounts with allowance may not be operators
     * themselves.
     */
    function allowance(address holder, address spender) public view returns (uint256) {
        return _allowances[holder][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function approve(address spender, uint256 value) external returns (bool) {
        address holder = msg.sender;
        _approve(holder, spender, value);
        return true;
    }

   /**
    * @dev See `IERC20.transferFrom`.
    *
    * Note that operator and allowance concepts are orthogonal: operators cannot
    * call `transferFrom` (unless they have allowance), and accounts with
    * allowance cannot call `operatorSend` (unless they are operators).
    *
    * Emits `Sent` and `Transfer` events.
    */
    function transferFrom(address holder, address recipient, uint256 amount) external returns (bool) {
        require(recipient != address(0), "ERC777: transfer to the zero address");
        require(holder != address(0), "ERC777: transfer from the zero address");

        address spender = msg.sender;

        _callTokensToSend(spender, holder, recipient, amount, "", "");

        _move(spender, holder, recipient, amount, "", "");
        _approve(holder, spender, _allowances[holder][spender].sub(amount));

        _callTokensReceived(spender, holder, recipient, amount, "", "", false);

        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * If a send hook is registered for `raccount`, the corresponding function
     * will be called with `operator`, `data` and `operatorData`.
     *
     * See `IERC777Sender` and `IERC777Recipient`.
     *
     * Emits `Sent` and `Transfer` events.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - if `account` is a contract, it must implement the `tokensReceived`
     * interface.
     */
    function _mint(
        address operator,
        address account,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
    internal
    {
        require(account != address(0), "ERC777: mint to the zero address");

        // Update state variables
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);

        _callTokensReceived(operator, address(0), account, amount, userData, operatorData, true);

        emit Minted(operator, account, amount, userData, operatorData);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Send tokens
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _send(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    )
        private
    {
        require(from != address(0), "ERC777: send from the zero address");
        require(to != address(0), "ERC777: send to the zero address");

        _callTokensToSend(operator, from, to, amount, userData, operatorData);

        _move(operator, from, to, amount, userData, operatorData);

        _callTokensReceived(operator, from, to, amount, userData, operatorData, requireReceptionAck);
    }

    /**
     * @dev Burn tokens
     * @param operator address operator requesting the operation
     * @param from address token holder address
     * @param amount uint256 amount of tokens to burn
     * @param data bytes extra information provided by the token holder
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _burn(
        address operator,
        address from,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    )
        private
    {
        require(from != address(0), "ERC777: burn from the zero address");

        _callTokensToSend(operator, from, address(0), amount, data, operatorData);

        // Update state variables
        _totalSupply = _totalSupply.sub(amount);
        _balances[from] = _balances[from].sub(amount);

        emit Burned(operator, from, amount, data, operatorData);
        emit Transfer(from, address(0), amount);
    }

    function _move(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
        private
    {
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount);

        emit Sent(operator, from, to, amount, userData, operatorData);
        emit Transfer(from, to, amount);
    }

    function _approve(address holder, address spender, uint256 value) private {
        // TODO: restore this require statement if this function becomes internal, or is called at a new callsite. It is
        // currently unnecessary.
        //require(holder != address(0), "ERC777: approve from the zero address");
        require(spender != address(0), "ERC777: approve to the zero address");

        _allowances[holder][spender] = value;
        emit Approval(holder, spender, value);
    }

    /**
     * @dev Call from.tokensToSend() if the interface is registered
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _callTokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
        private
    {
        address implementer = _erc1820.getInterfaceImplementer(from, TOKENS_SENDER_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Sender(implementer).tokensToSend(operator, from, to, amount, userData, operatorData);
        }
    }

    /**
     * @dev Call to.tokensReceived() if the interface is registered. Reverts if the recipient is a contract but
     * tokensReceived() was not registered for the recipient
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _callTokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    )
        private
    {
        address implementer = _erc1820.getInterfaceImplementer(to, TOKENS_RECIPIENT_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Recipient(implementer).tokensReceived(operator, from, to, amount, userData, operatorData);
        } else if (requireReceptionAck) {
            require(!to.isContract(), "ERC777: token recipient contract has no implementer for ERC777TokensRecipient");
        }
    }
}

// File: @openzeppelin/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/MMM.sol

pragma solidity 0.5.12;



/**
 * @title MMM
 * @dev Very simple ERC777 Token example, where all tokens are pre-assigned to the creator.
 * Note they can later distribute these tokens as they wish using `transfer` and other
 * `ERC20` or `ERC777` functions.
 * Based on https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/examples/SimpleToken.sol
 */
contract MMM is ERC777,Ownable {

    // TODO: 限制總發行量 5 億
    uint256 public constant _maxSupply = 5 * (10 ** 8) * (10 ** 18);

    modifier noOverflow(uint256 _amt) {
        require(_maxSupply >= totalSupply().add(_amt), 'totalSupply overflow');
        _;
    }

    constructor () public ERC777('dMMM', 'dMMM', new address[](0)) {
        return;
    }

    function mint(address _address,uint256 _amount) public noOverflow(_amount) onlyOwner {
        _mint(msg.sender, _address, _amount, '', '');
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"AuthorizedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Minted","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":"tokenHolder","type":"address"}],"name":"RevokedOperator","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":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Sent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"authorizeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"defaultOperators","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"granularity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"isOperatorFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorBurn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"revokeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"send","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

6080604052600080546001600160a01b031916731820a4b7618bde71dce8cdc73aab6c95905fad241790553480156200003757600080fd5b506040518060400160405280600481526020017f644d4d4d000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f644d4d4d000000000000000000000000000000000000000000000000000000008152506000604051908082528060200260200182016040528015620000d0578160200160208202803883390190505b508251620000e690600390602086019062000339565b508151620000fc90600490602085019062000339565b50805162000112906005906020840190620003be565b5060005b6005548110156200017257600160066000600584815481106200013557fe5b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff191691151591909117905560010162000116565b5060008054604080517f455243373737546f6b656e0000000000000000000000000000000000000000008152815190819003600b0181207f29965a1d00000000000000000000000000000000000000000000000000000000825230600483018190526024830191909152604482015290516001600160a01b03909216926329965a1d9260648084019382900301818387803b1580156200021157600080fd5b505af115801562000226573d6000803e3d6000fd5b505060008054604080517f4552433230546f6b656e000000000000000000000000000000000000000000008152815190819003600a0181207f29965a1d00000000000000000000000000000000000000000000000000000000825230600483018190526024830191909152604482015290516001600160a01b0390921694506329965a1d9350606480820193929182900301818387803b158015620002ca57600080fd5b505af1158015620002df573d6000803e3d6000fd5b5050600a80546001600160a01b0319163317908190556040516001600160a01b03919091169550600094507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e093508492509050a36200046b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200037c57805160ff1916838001178555620003ac565b82800160010185558215620003ac579182015b82811115620003ac5782518255916020019190600101906200038f565b50620003ba92915062000424565b5090565b82805482825590600052602060002090810192821562000416579160200282015b828111156200041657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620003df565b50620003ba92915062000444565b6200044191905b80821115620003ba57600081556001016200042b565b90565b6200044191905b80821115620003ba5780546001600160a01b03191681556001016200044b565b6121db806200047b6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80638da5cb5b116100c3578063d95b63711161007c578063d95b637114610533578063dd62ed3e14610561578063f2fde38b1461058f578063fad8b32a146105b5578063fc673c4f146105db578063fe9d9303146106ae57610158565b80638da5cb5b1461042a5780638f32d59b1461044e578063959b8c3f1461045657806395d89b411461047c5780639bd9bbc614610484578063a9059cbb1461050757610158565b8063313ce56711610115578063313ce567146102ca57806340c10f19146102e8578063556f0dc71461031657806362ad1b831461031e57806370a08231146103fc578063715018a61461042257610158565b806306e485381461015d57806306fdde03146101b5578063095ea7b31461023257806318160ddd1461027257806322f4596f1461028c57806323b872dd14610294575b600080fd5b610165610723565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156101a1578181015183820152602001610189565b505050509050019250505060405180910390f35b6101bd610785565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f75781810151838201526020016101df565b50505050905090810190601f1680156102245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61025e6004803603604081101561024857600080fd5b506001600160a01b038135169060200135610812565b604080519115158252519081900360200190f35b61027a61082a565b60408051918252519081900360200190f35b61027a610830565b61025e600480360360608110156102aa57600080fd5b506001600160a01b03813581169160208101359091169060400135610840565b6102d26109a5565b6040805160ff9092168252519081900360200190f35b610314600480360360408110156102fe57600080fd5b506001600160a01b0381351690602001356109aa565b005b61027a610aa3565b610314600480360360a081101561033457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561036e57600080fd5b82018360208201111561038057600080fd5b803590602001918460018302840111600160201b831117156103a157600080fd5b919390929091602081019035600160201b8111156103be57600080fd5b8201836020820111156103d057600080fd5b803590602001918460018302840111600160201b831117156103f157600080fd5b509092509050610aa8565b61027a6004803603602081101561041257600080fd5b50356001600160a01b0316610b70565b610314610b8b565b610432610c2e565b604080516001600160a01b039092168252519081900360200190f35b61025e610c3d565b6103146004803603602081101561046c57600080fd5b50356001600160a01b0316610c4e565b6101bd610d4f565b6103146004803603606081101561049a57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156104c957600080fd5b8201836020820111156104db57600080fd5b803590602001918460018302840111600160201b831117156104fc57600080fd5b509092509050610db0565b61025e6004803603604081101561051d57600080fd5b506001600160a01b038135169060200135610e0a565b61025e6004803603604081101561054957600080fd5b506001600160a01b0381358116916020013516610edc565b61027a6004803603604081101561057757600080fd5b506001600160a01b0381358116916020013516610f7e565b610314600480360360208110156105a557600080fd5b50356001600160a01b0316610fa9565b610314600480360360208110156105cb57600080fd5b50356001600160a01b031661100e565b610314600480360360808110156105f157600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561062057600080fd5b82018360208201111561063257600080fd5b803590602001918460018302840111600160201b8311171561065357600080fd5b919390929091602081019035600160201b81111561067057600080fd5b82018360208201111561068257600080fd5b803590602001918460018302840111600160201b831117156106a357600080fd5b50909250905061110f565b610314600480360360408110156106c457600080fd5b81359190810190604081016020820135600160201b8111156106e557600080fd5b8201836020820111156106f757600080fd5b803590602001918460018302840111600160201b8311171561071857600080fd5b5090925090506111d2565b6060600580548060200260200160405190810160405280929190818152602001828054801561077b57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161075d575b5050505050905090565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077b5780601f106107e65761010080835404028352916020019161077b565b820191906000526020600020905b8154815290600101906020018083116107f457509395945050505050565b600033610820818585611222565b5060019392505050565b60025490565b6b019d971e4fe8401e7400000081565b60006001600160a01b0383166108875760405162461bcd60e51b815260040180806020018281038252602481526020018061210e6024913960400191505060405180910390fd5b6001600160a01b0384166108cc5760405162461bcd60e51b815260040180806020018281038252602681526020018061215e6026913960400191505060405180910390fd5b60003390506108fd8186868660405180602001604052806000815250604051806020016040528060008152506112c9565b610929818686866040518060200160405280600081525060405180602001604052806000815250611500565b6001600160a01b0380861660009081526009602090815260408083209385168352929052205461096c9086908390610967908763ffffffff61170016565b611222565b61099a818686866040518060200160405280600081525060405180602001604052806000815250600061175d565b506001949350505050565b601290565b806109c3816109b761082a565b9063ffffffff6119ed16565b6b019d971e4fe8401e740000001015610a1a576040805162461bcd60e51b8152602060048201526014602482015273746f74616c537570706c79206f766572666c6f7760601b604482015290519081900360640190fd5b610a22610c3d565b610a73576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a9e3384846040518060200160405280600081525060405180602001604052806000815250611a47565b505050565b600190565b610ab23388610edc565b610aed5760405162461bcd60e51b815260040180806020018281038252602c815260200180612132602c913960400191505060405180910390fd5b610b673388888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525060019250611c7f915050565b50505050505050565b6001600160a01b031660009081526001602052604090205490565b610b93610c3d565b610be4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031690565b600a546001600160a01b0316331490565b336001600160a01b0382161415610c965760405162461bcd60e51b815260040180806020018281038252602481526020018061207c6024913960400191505060405180910390fd5b6001600160a01b03811660009081526006602052604090205460ff1615610ce7573360009081526008602090815260408083206001600160a01b03851684529091529020805460ff19169055610d16565b3360009081526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790555b60405133906001600160a01b038316907ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f990600090a350565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077b5780601f106107e65761010080835404028352916020019161077b565b610e043333868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506040805160208101909152908152925060019150611c7f9050565b50505050565b60006001600160a01b038316610e515760405162461bcd60e51b815260040180806020018281038252602481526020018061210e6024913960400191505060405180910390fd5b6000339050610e828182868660405180602001604052806000815250604051806020016040528060008152506112c9565b610eae818286866040518060200160405280600081525060405180602001604052806000815250611500565b610820818286866040518060200160405280600081525060405180602001604052806000815250600061175d565b6000816001600160a01b0316836001600160a01b03161480610f4757506001600160a01b03831660009081526006602052604090205460ff168015610f4757506001600160a01b0380831660009081526008602090815260408083209387168352929052205460ff16155b80610f7757506001600160a01b0380831660009081526007602090815260408083209387168352929052205460ff165b9392505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b610fb1610c3d565b611002576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61100b81611d4a565b50565b6001600160a01b0381163314156110565760405162461bcd60e51b81526004018080602001828103825260218152602001806120a06021913960400191505060405180910390fd5b6001600160a01b03811660009081526006602052604090205460ff16156110aa573360009081526008602090815260408083206001600160a01b03851684529091529020805460ff191660011790556110d6565b3360009081526007602090815260408083206001600160a01b03851684529091529020805460ff191690555b60405133906001600160a01b038316907f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa190600090a350565b6111193387610edc565b6111545760405162461bcd60e51b815260040180806020018281038252602c815260200180612132602c913960400191505060405180910390fd5b6111ca33878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b018190048102820181019092528981529250899150889081908401838280828437600092019190915250611deb92505050565b505050505050565b610a9e33338585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060408051602081019091529081529250611deb915050565b6001600160a01b0382166112675760405162461bcd60e51b81526004018080602001828103825260238152602001806121846023913960400191505060405180910390fd5b6001600160a01b03808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600080546040805163555ddc6560e11b81526001600160a01b0389811660048301527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248301529151919092169163aabbb8ca916044808301926020929190829003018186803b15801561133d57600080fd5b505afa158015611351573d6000803e3d6000fd5b505050506040513d602081101561136757600080fd5b505190506001600160a01b03811615610b6757806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561142d578181015183820152602001611415565b50505050905090810190601f16801561145a5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561148d578181015183820152602001611475565b50505050905090810190601f1680156114ba5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156114df57600080fd5b505af11580156114f3573d6000803e3d6000fd5b5050505050505050505050565b6001600160a01b038516600090815260016020526040902054611529908463ffffffff61170016565b6001600160a01b03808716600090815260016020526040808220939093559086168152205461155e908463ffffffff6119ed16565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156116105781810151838201526020016115f8565b50505050905090810190601f16801561163d5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611670578181015183820152602001611658565b50505050905090810190601f16801561169d5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b600082821115611757576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600080546040805163555ddc6560e11b81526001600160a01b0389811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151919092169163aabbb8ca916044808301926020929190829003018186803b1580156117d157600080fd5b505afa1580156117e5573d6000803e3d6000fd5b505050506040513d60208110156117fb57600080fd5b505190506001600160a01b0381161561198f57806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156118c05781810151838201526020016118a8565b50505050905090810190601f1680156118ed5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611920578181015183820152602001611908565b50505050905090810190601f16801561194d5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b15801561197257600080fd5b505af1158015611986573d6000803e3d6000fd5b505050506119e3565b81156119e3576119a7866001600160a01b031661200b565b156119e35760405162461bcd60e51b815260040180806020018281038252604d8152602001806120c1604d913960600191505060405180910390fd5b5050505050505050565b600082820183811015610f77576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038416611aa2576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600254611ab5908463ffffffff6119ed16565b6002556001600160a01b038416600090815260016020526040902054611ae1908463ffffffff6119ed16565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550611b1b85600086868686600161175d565b836001600160a01b0316856001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611b9a578181015183820152602001611b82565b50505050905090810190601f168015611bc75780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611bfa578181015183820152602001611be2565b50505050905090810190601f168015611c275780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516001600160a01b038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6001600160a01b038616611cc45760405162461bcd60e51b81526004018080602001828103825260228152602001806120126022913960400191505060405180910390fd5b6001600160a01b038516611d1f576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611d2d8787878787876112c9565b611d3b878787878787611500565b610b678787878787878761175d565b6001600160a01b038116611d8f5760405162461bcd60e51b81526004018080602001828103825260268152602001806120346026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038416611e305760405162461bcd60e51b815260040180806020018281038252602281526020018061205a6022913960400191505060405180910390fd5b611e3f858560008686866112c9565b600254611e52908463ffffffff61170016565b6002556001600160a01b038416600090815260016020526040902054611e7e908463ffffffff61170016565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611f26578181015183820152602001611f0e565b50505050905090810190601f168015611f535780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611f86578181015183820152602001611f6e565b50505050905090810190601f168015611fb35780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516000916001600160a01b038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b3b15159056fe4552433737373a2073656e642066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a20617070726f766520746f20746865207a65726f2061646472657373a265627a7a723158204761036a8d2c96e121fe73f4a8389bd667efc49b2896b66e21beef0e7530a96e64736f6c634300050c0032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80638da5cb5b116100c3578063d95b63711161007c578063d95b637114610533578063dd62ed3e14610561578063f2fde38b1461058f578063fad8b32a146105b5578063fc673c4f146105db578063fe9d9303146106ae57610158565b80638da5cb5b1461042a5780638f32d59b1461044e578063959b8c3f1461045657806395d89b411461047c5780639bd9bbc614610484578063a9059cbb1461050757610158565b8063313ce56711610115578063313ce567146102ca57806340c10f19146102e8578063556f0dc71461031657806362ad1b831461031e57806370a08231146103fc578063715018a61461042257610158565b806306e485381461015d57806306fdde03146101b5578063095ea7b31461023257806318160ddd1461027257806322f4596f1461028c57806323b872dd14610294575b600080fd5b610165610723565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156101a1578181015183820152602001610189565b505050509050019250505060405180910390f35b6101bd610785565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f75781810151838201526020016101df565b50505050905090810190601f1680156102245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61025e6004803603604081101561024857600080fd5b506001600160a01b038135169060200135610812565b604080519115158252519081900360200190f35b61027a61082a565b60408051918252519081900360200190f35b61027a610830565b61025e600480360360608110156102aa57600080fd5b506001600160a01b03813581169160208101359091169060400135610840565b6102d26109a5565b6040805160ff9092168252519081900360200190f35b610314600480360360408110156102fe57600080fd5b506001600160a01b0381351690602001356109aa565b005b61027a610aa3565b610314600480360360a081101561033457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561036e57600080fd5b82018360208201111561038057600080fd5b803590602001918460018302840111600160201b831117156103a157600080fd5b919390929091602081019035600160201b8111156103be57600080fd5b8201836020820111156103d057600080fd5b803590602001918460018302840111600160201b831117156103f157600080fd5b509092509050610aa8565b61027a6004803603602081101561041257600080fd5b50356001600160a01b0316610b70565b610314610b8b565b610432610c2e565b604080516001600160a01b039092168252519081900360200190f35b61025e610c3d565b6103146004803603602081101561046c57600080fd5b50356001600160a01b0316610c4e565b6101bd610d4f565b6103146004803603606081101561049a57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156104c957600080fd5b8201836020820111156104db57600080fd5b803590602001918460018302840111600160201b831117156104fc57600080fd5b509092509050610db0565b61025e6004803603604081101561051d57600080fd5b506001600160a01b038135169060200135610e0a565b61025e6004803603604081101561054957600080fd5b506001600160a01b0381358116916020013516610edc565b61027a6004803603604081101561057757600080fd5b506001600160a01b0381358116916020013516610f7e565b610314600480360360208110156105a557600080fd5b50356001600160a01b0316610fa9565b610314600480360360208110156105cb57600080fd5b50356001600160a01b031661100e565b610314600480360360808110156105f157600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561062057600080fd5b82018360208201111561063257600080fd5b803590602001918460018302840111600160201b8311171561065357600080fd5b919390929091602081019035600160201b81111561067057600080fd5b82018360208201111561068257600080fd5b803590602001918460018302840111600160201b831117156106a357600080fd5b50909250905061110f565b610314600480360360408110156106c457600080fd5b81359190810190604081016020820135600160201b8111156106e557600080fd5b8201836020820111156106f757600080fd5b803590602001918460018302840111600160201b8311171561071857600080fd5b5090925090506111d2565b6060600580548060200260200160405190810160405280929190818152602001828054801561077b57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161075d575b5050505050905090565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077b5780601f106107e65761010080835404028352916020019161077b565b820191906000526020600020905b8154815290600101906020018083116107f457509395945050505050565b600033610820818585611222565b5060019392505050565b60025490565b6b019d971e4fe8401e7400000081565b60006001600160a01b0383166108875760405162461bcd60e51b815260040180806020018281038252602481526020018061210e6024913960400191505060405180910390fd5b6001600160a01b0384166108cc5760405162461bcd60e51b815260040180806020018281038252602681526020018061215e6026913960400191505060405180910390fd5b60003390506108fd8186868660405180602001604052806000815250604051806020016040528060008152506112c9565b610929818686866040518060200160405280600081525060405180602001604052806000815250611500565b6001600160a01b0380861660009081526009602090815260408083209385168352929052205461096c9086908390610967908763ffffffff61170016565b611222565b61099a818686866040518060200160405280600081525060405180602001604052806000815250600061175d565b506001949350505050565b601290565b806109c3816109b761082a565b9063ffffffff6119ed16565b6b019d971e4fe8401e740000001015610a1a576040805162461bcd60e51b8152602060048201526014602482015273746f74616c537570706c79206f766572666c6f7760601b604482015290519081900360640190fd5b610a22610c3d565b610a73576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a9e3384846040518060200160405280600081525060405180602001604052806000815250611a47565b505050565b600190565b610ab23388610edc565b610aed5760405162461bcd60e51b815260040180806020018281038252602c815260200180612132602c913960400191505060405180910390fd5b610b673388888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525060019250611c7f915050565b50505050505050565b6001600160a01b031660009081526001602052604090205490565b610b93610c3d565b610be4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031690565b600a546001600160a01b0316331490565b336001600160a01b0382161415610c965760405162461bcd60e51b815260040180806020018281038252602481526020018061207c6024913960400191505060405180910390fd5b6001600160a01b03811660009081526006602052604090205460ff1615610ce7573360009081526008602090815260408083206001600160a01b03851684529091529020805460ff19169055610d16565b3360009081526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790555b60405133906001600160a01b038316907ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f990600090a350565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077b5780601f106107e65761010080835404028352916020019161077b565b610e043333868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506040805160208101909152908152925060019150611c7f9050565b50505050565b60006001600160a01b038316610e515760405162461bcd60e51b815260040180806020018281038252602481526020018061210e6024913960400191505060405180910390fd5b6000339050610e828182868660405180602001604052806000815250604051806020016040528060008152506112c9565b610eae818286866040518060200160405280600081525060405180602001604052806000815250611500565b610820818286866040518060200160405280600081525060405180602001604052806000815250600061175d565b6000816001600160a01b0316836001600160a01b03161480610f4757506001600160a01b03831660009081526006602052604090205460ff168015610f4757506001600160a01b0380831660009081526008602090815260408083209387168352929052205460ff16155b80610f7757506001600160a01b0380831660009081526007602090815260408083209387168352929052205460ff165b9392505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b610fb1610c3d565b611002576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61100b81611d4a565b50565b6001600160a01b0381163314156110565760405162461bcd60e51b81526004018080602001828103825260218152602001806120a06021913960400191505060405180910390fd5b6001600160a01b03811660009081526006602052604090205460ff16156110aa573360009081526008602090815260408083206001600160a01b03851684529091529020805460ff191660011790556110d6565b3360009081526007602090815260408083206001600160a01b03851684529091529020805460ff191690555b60405133906001600160a01b038316907f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa190600090a350565b6111193387610edc565b6111545760405162461bcd60e51b815260040180806020018281038252602c815260200180612132602c913960400191505060405180910390fd5b6111ca33878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b018190048102820181019092528981529250899150889081908401838280828437600092019190915250611deb92505050565b505050505050565b610a9e33338585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060408051602081019091529081529250611deb915050565b6001600160a01b0382166112675760405162461bcd60e51b81526004018080602001828103825260238152602001806121846023913960400191505060405180910390fd5b6001600160a01b03808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600080546040805163555ddc6560e11b81526001600160a01b0389811660048301527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248301529151919092169163aabbb8ca916044808301926020929190829003018186803b15801561133d57600080fd5b505afa158015611351573d6000803e3d6000fd5b505050506040513d602081101561136757600080fd5b505190506001600160a01b03811615610b6757806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561142d578181015183820152602001611415565b50505050905090810190601f16801561145a5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561148d578181015183820152602001611475565b50505050905090810190601f1680156114ba5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156114df57600080fd5b505af11580156114f3573d6000803e3d6000fd5b5050505050505050505050565b6001600160a01b038516600090815260016020526040902054611529908463ffffffff61170016565b6001600160a01b03808716600090815260016020526040808220939093559086168152205461155e908463ffffffff6119ed16565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156116105781810151838201526020016115f8565b50505050905090810190601f16801561163d5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611670578181015183820152602001611658565b50505050905090810190601f16801561169d5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b600082821115611757576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600080546040805163555ddc6560e11b81526001600160a01b0389811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151919092169163aabbb8ca916044808301926020929190829003018186803b1580156117d157600080fd5b505afa1580156117e5573d6000803e3d6000fd5b505050506040513d60208110156117fb57600080fd5b505190506001600160a01b0381161561198f57806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156118c05781810151838201526020016118a8565b50505050905090810190601f1680156118ed5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611920578181015183820152602001611908565b50505050905090810190601f16801561194d5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b15801561197257600080fd5b505af1158015611986573d6000803e3d6000fd5b505050506119e3565b81156119e3576119a7866001600160a01b031661200b565b156119e35760405162461bcd60e51b815260040180806020018281038252604d8152602001806120c1604d913960600191505060405180910390fd5b5050505050505050565b600082820183811015610f77576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038416611aa2576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600254611ab5908463ffffffff6119ed16565b6002556001600160a01b038416600090815260016020526040902054611ae1908463ffffffff6119ed16565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550611b1b85600086868686600161175d565b836001600160a01b0316856001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611b9a578181015183820152602001611b82565b50505050905090810190601f168015611bc75780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611bfa578181015183820152602001611be2565b50505050905090810190601f168015611c275780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516001600160a01b038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6001600160a01b038616611cc45760405162461bcd60e51b81526004018080602001828103825260228152602001806120126022913960400191505060405180910390fd5b6001600160a01b038516611d1f576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611d2d8787878787876112c9565b611d3b878787878787611500565b610b678787878787878761175d565b6001600160a01b038116611d8f5760405162461bcd60e51b81526004018080602001828103825260268152602001806120346026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038416611e305760405162461bcd60e51b815260040180806020018281038252602281526020018061205a6022913960400191505060405180910390fd5b611e3f858560008686866112c9565b600254611e52908463ffffffff61170016565b6002556001600160a01b038416600090815260016020526040902054611e7e908463ffffffff61170016565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611f26578181015183820152602001611f0e565b50505050905090810190601f168015611f535780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611f86578181015183820152602001611f6e565b50505050905090810190601f168015611fb35780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516000916001600160a01b038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b3b15159056fe4552433737373a2073656e642066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a20617070726f766520746f20746865207a65726f2061646472657373a265627a7a723158204761036a8d2c96e121fe73f4a8389bd667efc49b2896b66e21beef0e7530a96e64736f6c634300050c0032

Deployed Bytecode Sourcemap

40509:543:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40509:543:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28154:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;28154:115:0;;;;;;;;;;;;;;;;;24464:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;24464:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29709:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29709:184:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25239:91;;;:::i;:::-;;;;;;;;;;;;;;;;40588:63;;;:::i;30243:632::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30243:632:0;;;;;;;;;;;;;;;;;:::i;24895:76::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40899:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;40899:148:0;;;;;;;;:::i;:::-;;25093:80;;;:::i;28388:384::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;28388:384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;28388:384:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28388:384:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;28388:384:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;28388:384:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28388:384:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;28388:384:0;;-1:-1:-1;28388:384:0;-1:-1:-1;28388:384:0;:::i;25435:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25435:118:0;-1:-1:-1;;;;;25435:118:0;;:::i;39347:140::-;;;:::i;38536:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;38536:79:0;;;;;;;;;;;;;;38902:92;;;:::i;27225:399::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27225:399:0;-1:-1:-1;;;;;27225:399:0;;:::i;24608:87::-;;;:::i;25683:162::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;25683:162:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;25683:162:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25683:162:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;25683:162:0;;-1:-1:-1;25683:162:0;-1:-1:-1;25683:162:0;:::i;26084:434::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26084:434:0;;;;;;;;:::i;26842:311::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26842:311:0;;;;;;;;;;:::i;29428:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29428:136:0;;;;;;;;;;:::i;39642:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39642:109:0;-1:-1:-1;;;;;39642:109:0;;:::i;27693:390::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27693:390:0;-1:-1:-1;;;;;27693:390:0;;:::i;28891:289::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;28891:289:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;28891:289:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28891:289:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;28891:289:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;28891:289:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28891:289:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;28891:289:0;;-1:-1:-1;28891:289:0;-1:-1:-1;28891:289:0;:::i;26648:126::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26648:126:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;26648:126:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;26648:126:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;26648:126:0;;-1:-1:-1;26648:126:0;-1:-1:-1;26648:126:0;:::i;28154:115::-;28203:16;28239:22;28232:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28232:29:0;;;;;;;;;;;;;;;;;;;;;;;28154:115;:::o;24464:83::-;24534:5;24527:12;;;;;;;;-1:-1:-1;;24527:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24501:13;;24527:12;;24534:5;;24527:12;;24534:5;24527:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24527:12:0;;24464:83;-1:-1:-1;;;;;24464:83:0:o;29709:184::-;29776:4;29810:10;29831:32;29810:10;29848:7;29857:5;29831:8;:32::i;:::-;-1:-1:-1;29881:4:0;;29709:184;-1:-1:-1;;;29709:184:0:o;25239:91::-;25310:12;;25239:91;:::o;40588:63::-;40625:26;40588:63;:::o;30243:632::-;30334:4;-1:-1:-1;;;;;30359:23:0;;30351:72;;;;-1:-1:-1;;;30351:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30442:20:0;;30434:71;;;;-1:-1:-1;;;30434:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30518:15;30536:10;30518:28;;30559:61;30577:7;30586:6;30594:9;30605:6;30559:61;;;;;;;;;;;;;;;;;;;;;;;;:17;:61::i;:::-;30633:49;30639:7;30648:6;30656:9;30667:6;30633:49;;;;;;;;;;;;;;;;;;;;;;;;:5;:49::i;:::-;-1:-1:-1;;;;;30719:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;30693:67;;30702:6;;30710:7;;30719:40;;30752:6;30719:40;:32;:40;:::i;:::-;30693:8;:67::i;:::-;30773:70;30793:7;30802:6;30810:9;30821:6;30773:70;;;;;;;;;;;;;;;;;;;;;;;;30837:5;30773:19;:70::i;:::-;-1:-1:-1;30863:4:0;;30243:632;-1:-1:-1;;;;30243:632:0:o;24895:76::-;24961:2;24895:76;:::o;40899:148::-;40965:7;40727:23;40745:4;40727:13;:11;:13::i;:::-;:17;:23;:17;:23;:::i;:::-;40625:26;40713:37;;40705:70;;;;;-1:-1:-1;;;40705:70:0;;;;;;;;;;;;-1:-1:-1;;;40705:70:0;;;;;;;;;;;;;;;38748:9;:7;:9::i;:::-;38740:54;;;;;-1:-1:-1;;;38740:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40995:44;41001:10;41013:8;41023:7;40995:44;;;;;;;;;;;;;;;;;;;;;;;;:5;:44::i;:::-;40899:148;;;:::o;25093:80::-;25164:1;25093:80;:::o;28388:384::-;28601:33;28615:10;28627:6;28601:13;:33::i;:::-;28593:90;;;;-1:-1:-1;;;28593:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28694:70;28700:10;28712:6;28720:9;28731:6;28739:4;;28694:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;28694:70:0;;;;137:4:-1;28694:70:0;;;;;;;;;;;;;;;;;;-1:-1:-1;28745:12:0;;-1:-1:-1;28745:12:0;;;;28694:70;;28745:12;;;;28694:70;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;28759:4:0;;-1:-1:-1;28694:5:0;;-1:-1:-1;;28694:70:0:i;:::-;28388:384;;;;;;;:::o;25435:118::-;-1:-1:-1;;;;;25523:22:0;25496:7;25523:22;;;:9;:22;;;;;;;25435:118::o;39347:140::-;38748:9;:7;:9::i;:::-;38740:54;;;;;-1:-1:-1;;;38740:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39430:6;;39409:40;;39446:1;;-1:-1:-1;;;;;39430:6:0;;39409:40;;39446:1;;39409:40;39460:6;:19;;-1:-1:-1;;;;;;39460:19:0;;;39347:140::o;38536:79::-;38601:6;;-1:-1:-1;;;;;38601:6:0;38536:79;:::o;38902:92::-;38980:6;;-1:-1:-1;;;;;38980:6:0;38966:10;:20;;38902:92::o;27225:399::-;27298:10;-1:-1:-1;;;;;27298:22:0;;;;27290:71;;;;-1:-1:-1;;;27290:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27378:27:0;;;;;;:17;:27;;;;;;;;27374:185;;;27454:10;27429:36;;;;:24;:36;;;;;;;;-1:-1:-1;;;;;27429:46:0;;;;;;;;;27422:53;;-1:-1:-1;;27422:53:0;;;27374:185;;;27519:10;27508:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;27508:32:0;;;;;;;;;:39;;-1:-1:-1;;27508:39:0;27543:4;27508:39;;;27374:185;27576:40;;27605:10;;-1:-1:-1;;;;;27576:40:0;;;;;;;;27225:399;:::o;24608:87::-;24680:7;24673:14;;;;;;;;-1:-1:-1;;24673:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24647:13;;24673:14;;24680:7;;24673:14;;24680:7;24673:14;;;;;;;;;;;;;;;;;;;;;;;;25683:162;25773:64;25779:10;25791;25803:9;25814:6;25822:4;;25773:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;-1:-1;25773:64:0;;;;;;;;;;;;;-1:-1:-1;25832:4:0;;-1:-1:-1;25773:5:0;;-1:-1:-1;25773:64:0:i;:::-;25683:162;;;;:::o;26084:434::-;26155:4;-1:-1:-1;;;;;26180:23:0;;26172:72;;;;-1:-1:-1;;;26172:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26257:12;26272:10;26257:25;;26295:56;26313:4;26319;26325:9;26336:6;26295:56;;;;;;;;;;;;;;;;;;;;;;;;:17;:56::i;:::-;26364:44;26370:4;26376;26382:9;26393:6;26364:44;;;;;;;;;;;;;;;;;;;;;;;;:5;:44::i;:::-;26421:65;26441:4;26447;26453:9;26464:6;26421:65;;;;;;;;;;;;;;;;;;;;;;;;26480:5;26421:19;:65::i;26842:311::-;26950:4;26986:11;-1:-1:-1;;;;;26974:23:0;:8;-1:-1:-1;;;;;26974:23:0;;:121;;;-1:-1:-1;;;;;;27015:27:0;;;;;;:17;:27;;;;;;;;:79;;;;-1:-1:-1;;;;;;27047:37:0;;;;;;;:24;:37;;;;;;;;:47;;;;;;;;;;;;27046:48;27015:79;26974:171;;;-1:-1:-1;;;;;;27112:23:0;;;;;;;:10;:23;;;;;;;;:33;;;;;;;;;;;;26974:171;26967:178;26842:311;-1:-1:-1;;;26842:311:0:o;29428:136::-;-1:-1:-1;;;;;29528:19:0;;;29501:7;29528:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;29428:136::o;39642:109::-;38748:9;:7;:9::i;:::-;38740:54;;;;;-1:-1:-1;;;38740:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39715:28;39734:8;39715:18;:28::i;:::-;39642:109;:::o;27693:390::-;-1:-1:-1;;;;;27763:22:0;;27775:10;27763:22;;27755:68;;;;-1:-1:-1;;;27755:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27840:27:0;;;;;;:17;:27;;;;;;;;27836:185;;;27909:10;27884:36;;;;:24;:36;;;;;;;;-1:-1:-1;;;;;27884:46:0;;;;;;;;;:53;;-1:-1:-1;;27884:53:0;27933:4;27884:53;;;27836:185;;;27988:10;27977:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;27977:32:0;;;;;;;;;27970:39;;-1:-1:-1;;27970:39:0;;;27836:185;28038:37;;28064:10;;-1:-1:-1;;;;;28038:37:0;;;;;;;;27693:390;:::o;28891:289::-;29024:34;29038:10;29050:7;29024:13;:34::i;:::-;29016:91;;;;-1:-1:-1;;;29016:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29118:54;29124:10;29136:7;29145:6;29153:4;;29118:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;29118:54:0;;;;137:4:-1;29118:54:0;;;;;;;;;;;;;;;;;;-1:-1:-1;29159:12:0;;-1:-1:-1;29159:12:0;;;;29118:54;;29159:12;;;;29118:54;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;29118:5:0;;-1:-1:-1;;;29118:54:0:i;:::-;28891:289;;;;;;:::o;26648:126::-;26719:47;26725:10;26737;26749:6;26757:4;;26719:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;-1:-1;26719:47:0;;;;;;;;;;;;;-1:-1:-1;26719:5:0;;-1:-1:-1;;26719:47:0:i;34762:499::-;-1:-1:-1;;;;;35095:21:0;;35087:69;;;;-1:-1:-1;;;35087:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35169:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:36;;;35221:32;;;;;;;;;;;;;;;;;34762:499;;;:::o;35745:488::-;35976:19;35998:8;;:68;;;-1:-1:-1;;;35998:68:0;;-1:-1:-1;;;;;35998:68:0;;;;;;;22818:66;35998:68;;;;;;:8;;;;;:32;;:68;;;;;;;;;;;;;;:8;:68;;;5:2:-1;;;;30:1;27;20:12;5:2;35998:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35998:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35998:68:0;;-1:-1:-1;;;;;;36081:25:0;;;36077:149;;36137:11;-1:-1:-1;;;;;36123:39:0;;36163:8;36173:4;36179:2;36183:6;36191:8;36201:12;36123:91;;;;;;;;;;;;;-1:-1:-1;;;;;36123:91:0;-1:-1:-1;;;;;36123:91:0;;;;;;-1:-1:-1;;;;;36123:91:0;-1:-1:-1;;;;;36123:91:0;;;;;;-1:-1:-1;;;;;36123:91:0;-1:-1:-1;;;;;36123:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;36123:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36123:91:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;36123:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36123:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36123:91:0;;;;35745:488;;;;;;;:::o;34314:440::-;-1:-1:-1;;;;;34551:15:0;;;;;;:9;:15;;;;;;:27;;34571:6;34551:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;34533:15:0;;;;;;;:9;:15;;;;;;:45;;;;34605:13;;;;;;;:25;;34623:6;34605:25;:17;:25;:::i;:::-;34589:9;:13;34599:2;-1:-1:-1;;;;;34589:13:0;-1:-1:-1;;;;;34589:13:0;;;;;;;;;;;;:41;;;;34669:2;-1:-1:-1;;;;;34648:56:0;34663:4;-1:-1:-1;;;;;34648:56:0;34653:8;-1:-1:-1;;;;;34648:56:0;;34673:6;34681:8;34691:12;34648:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;34648:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34648:56:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;34648:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34735:2;-1:-1:-1;;;;;34720:26:0;34729:4;-1:-1:-1;;;;;34720:26:0;;34739:6;34720:26;;;;;;;;;;;;;;;;;;34314:440;;;;;;:::o;13063:184::-;13121:7;13154:1;13149;:6;;13141:49;;;;;-1:-1:-1;;;13141:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13213:5:0;;;13063:184::o;36935:695::-;37203:19;37225:8;;:69;;;-1:-1:-1;;;37225:69:0;;-1:-1:-1;;;;;37225:69:0;;;;;;;23004:66;37225:69;;;;;;:8;;;;;:32;;:69;;;;;;;;;;;;;;:8;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;37225:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37225:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37225:69:0;;-1:-1:-1;;;;;;37309:25:0;;;37305:318;;37368:11;-1:-1:-1;;;;;37351:44:0;;37396:8;37406:4;37412:2;37416:6;37424:8;37434:12;37351:96;;;;;;;;;;;;;-1:-1:-1;;;;;37351:96:0;-1:-1:-1;;;;;37351:96:0;;;;;;-1:-1:-1;;;;;37351:96:0;-1:-1:-1;;;;;37351:96:0;;;;;;-1:-1:-1;;;;;37351:96:0;-1:-1:-1;;;;;37351:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37351:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37351:96:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37351:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37351:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37351:96:0;;;;37305:318;;;37469:19;37465:158;;;37514:15;:2;-1:-1:-1;;;;;37514:13:0;;:15::i;:::-;37513:16;37505:106;;;;-1:-1:-1;;;37505:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36935:695;;;;;;;;:::o;12607:181::-;12665:7;12697:5;;;12721:6;;;;12713:46;;;;;-1:-1:-1;;;12713:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;31454:650;-1:-1:-1;;;;;31660:21:0;;31652:66;;;;;-1:-1:-1;;;31652:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31781:12;;:24;;31798:6;31781:24;:16;:24;:::i;:::-;31766:12;:39;-1:-1:-1;;;;;31837:18:0;;;;;;:9;:18;;;;;;:30;;31860:6;31837:30;:22;:30;:::i;:::-;31816:9;:18;31826:7;-1:-1:-1;;;;;31816:18:0;-1:-1:-1;;;;;31816:18:0;;;;;;;;;;;;:51;;;;31880:88;31900:8;31918:1;31922:7;31931:6;31939:8;31949:12;31963:4;31880:19;:88::i;:::-;32003:7;-1:-1:-1;;;;;31986:57:0;31993:8;-1:-1:-1;;;;;31986:57:0;;32012:6;32020:8;32030:12;31986:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31986:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31986:57:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31986:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32059:37;;;;;;;;-1:-1:-1;;;;;32059:37:0;;;32076:1;;32059:37;;;;;;;;;31454:650;;;;;:::o;32656:656::-;-1:-1:-1;;;;;32918:18:0;;32910:65;;;;-1:-1:-1;;;32910:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32994:16:0;;32986:61;;;;;-1:-1:-1;;;32986:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33060:69;33078:8;33088:4;33094:2;33098:6;33106:8;33116:12;33060:17;:69::i;:::-;33142:57;33148:8;33158:4;33164:2;33168:6;33176:8;33186:12;33142:5;:57::i;:::-;33212:92;33232:8;33242:4;33248:2;33252:6;33260:8;33270:12;33284:19;33212;:92::i;39857:229::-;-1:-1:-1;;;;;39931:22:0;;39923:73;;;;-1:-1:-1;;;39923:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40033:6;;40012:38;;-1:-1:-1;;;;;40012:38:0;;;;40033:6;;40012:38;;40033:6;;40012:38;40061:6;:17;;-1:-1:-1;;;;;;40061:17:0;-1:-1:-1;;;;;40061:17:0;;;;;;;;;;39857:229::o;33692:614::-;-1:-1:-1;;;;;33894:18:0;;33886:65;;;;-1:-1:-1;;;33886:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33964:73;33982:8;33992:4;34006:1;34010:6;34018:4;34024:12;33964:17;:73::i;:::-;34100:12;;:24;;34117:6;34100:24;:16;:24;:::i;:::-;34085:12;:39;-1:-1:-1;;;;;34153:15:0;;;;;;:9;:15;;;;;;:27;;34173:6;34153:27;:19;:27;:::i;:::-;34135:9;:15;34145:4;-1:-1:-1;;;;;34135:15:0;-1:-1:-1;;;;;34135:15:0;;;;;;;;;;;;:45;;;;34215:4;-1:-1:-1;;;;;34198:50:0;34205:8;-1:-1:-1;;;;;34198:50:0;;34221:6;34229:4;34235:12;34198:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;34198:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34198:50:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;34198:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34264:34;;;;;;;;34287:1;;-1:-1:-1;;;;;34264:34:0;;;;;;;;;;;;33692:614;;;;;:::o;15998:422::-;16365:20;16404:8;;;15998:422::o

Swarm Source

bzzr://4761036a8d2c96e121fe73f4a8389bd667efc49b2896b66e21beef0e7530a96e
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.