ETH Price: $3,164.42 (+1.16%)
Gas: 2 Gwei

Token

MOchi MArket (MOMA)
 

Overview

Max Total Supply

100,000,000 MOMA

Holders

1,092 (0.00%)

Market

Price

$0.00 @ 0.000001 ETH (+1.36%)

Onchain Market Cap

$272,003.09

Circulating Supply Market Cap

$106,929.81

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
3rag0n.eth
Balance
518.679580544090215096 MOMA

Value
$1.41 ( ~0.000445578842705718 Eth) [0.0005%]
0x73eccca839a60f0beb67eb51c0b910588edc9117
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mochi.Market is the first product of Mochilab.org and aims to solve three important current challenges: lack of liquidity in the NFT market, lack of monetization strategy for NFT holders during their holding period, and lack of crosschain usage between NFTs and FTs.

Market

Volume (24H):$21,033.95
Market Capitalization:$106,929.81
Circulating Supply:39,311,982.00 MOMA
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MOMA

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2021-04-21
*/

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


pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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.
     *
     * IMPORTANT: 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/utils/EnumerableSet.sol


pragma solidity ^0.6.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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


pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies 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;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/GSN/Context.sol


pragma solidity ^0.6.0;

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

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

// File: @openzeppelin/contracts/access/AccessControl.sol


pragma solidity ^0.6.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


pragma solidity ^0.6.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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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


pragma solidity ^0.6.0;





/**
 * @dev Implementation of the {IERC20} 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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

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


pragma solidity ^0.6.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

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


pragma solidity ^0.6.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


pragma solidity ^0.6.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/presets/ERC20PresetMinterPauser.sol


pragma solidity ^0.6.0;






/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC20PresetMinterPauser is Context, AccessControl, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) public ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

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


pragma solidity ^0.6.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: contracts/MOMA.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;




/// @author MochiLab
contract MOMA is ERC20PresetMinterPauser, ReentrancyGuard {
    struct BlacklistInfo {
        bool locked;
        uint256 lockedFrom;
        uint256 initLockedBalance;
    }

    struct VestingInfo {
        bool isActive;
        uint256 amount;
        uint256 startTime;
        uint256 claimedAmount;
        uint256 fullLockedDays;
        uint256 releaseTotalRounds;
        uint256 daysPerRound;
    }

    uint256 private _blacklistEffectiveEndtime;
    mapping(address => BlacklistInfo) private _blacklist;

    mapping(address => VestingInfo) private _vestingList;

    bytes32 public constant LOCKER_ROLE = keccak256("LOCKER_ROLE");
    uint256 public constant INITIAL_SUPPLY = 5000000 * DECIMAL_MULTIPLIER;
    uint256 public constant MAX_SUPPLY = 100000000 * DECIMAL_MULTIPLIER;
    uint256 public constant DECIMAL_MULTIPLIER = 10**18;
    uint256 public constant BLACKLIST_LOCK_DAYS = 50;
    uint256 public constant BLACKLIST_EFFECTIVE_DURATION = 30 days;

    modifier onlyAdmin() {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "MOMA: ADMIN role required");
        _;
    }

    modifier onlyMinter() {
        require(hasRole(MINTER_ROLE, _msgSender()), "MOMA: MINTER role required");
        _;
    }

    modifier onlyLocker() {
        require(hasRole(LOCKER_ROLE, _msgSender()), "MOMA: LOCKER role required");
        _;
    }

    constructor(address multiSigAccount) public ERC20PresetMinterPauser("MOchi MArket", "MOMA") {
        _blacklistEffectiveEndtime = block.timestamp.add(BLACKLIST_EFFECTIVE_DURATION);
        _mint(_msgSender(), INITIAL_SUPPLY);
        _setupRole(DEFAULT_ADMIN_ROLE, multiSigAccount);
        _setupRole(MINTER_ROLE, multiSigAccount);
        _setupRole(PAUSER_ROLE, multiSigAccount);
        _setupRole(LOCKER_ROLE, _msgSender());
        renounceRole(DEFAULT_ADMIN_ROLE, _msgSender());
        renounceRole(MINTER_ROLE, _msgSender());
        renounceRole(PAUSER_ROLE, _msgSender());
    }

    function mint(address to, uint256 amount) public virtual override onlyMinter {
        require(totalSupply().add(amount) <= MAX_SUPPLY, "MOMA: Max supply exceeded");
        _mint(to, amount);
    }

    function isBlocked(address user) external view returns (bool) {
        return _blacklist[user].locked;
    }

    function getBlacklistByUser(address user) external view returns (BlacklistInfo memory) {
        return _blacklist[user];
    }

    function addToBlacklist(address user) external onlyLocker {
        require(block.timestamp < _blacklistEffectiveEndtime, "MOMA: Force lock time ended");
        _blacklist[user] = BlacklistInfo(true, block.timestamp, balanceOf(user));
    }

    function removeFromBlacklist(address user) external onlyLocker {
        _blacklist[user].locked = false;
    }

    function _getUnlockedBalance(address user) internal view returns (uint256 unlockedBalance) {
        BlacklistInfo memory info = _blacklist[user];
        uint256 daysPassed = block.timestamp.sub(info.lockedFrom).div(1 days);

        if (info.locked && daysPassed < BLACKLIST_LOCK_DAYS) {
            unlockedBalance = daysPassed.mul(info.initLockedBalance).div(BLACKLIST_LOCK_DAYS);
        } else {
            unlockedBalance = info.initLockedBalance;
        }
        return unlockedBalance;
    }

    function remainLockedBalance(address user) public view returns (uint256) {
        return _blacklist[user].initLockedBalance.sub(_getUnlockedBalance(user));
    }

    function addVestingToken(
        address beneficiary,
        uint256 amount,
        uint256 fullLockedDays,
        uint256 releaseTotalRounds,
        uint256 daysPerRound
    ) external onlyAdmin {
        require(beneficiary != address(0), "MOMA: Zero address");
        require(!_vestingList[beneficiary].isActive, "MOMA: Invalid vesting");
        VestingInfo memory info =
            VestingInfo(
                true,
                amount,
                block.timestamp,
                0,
                fullLockedDays,
                releaseTotalRounds,
                daysPerRound
            );
        _vestingList[beneficiary] = info;
    }

    function revokeVestingToken(address user) external onlyAdmin {
        require(_vestingList[user].isActive, "MOMA: Invalid beneficiary");
        uint256 claimableAmount = _getVestingClaimableAmount(user);
        require(totalSupply().add(claimableAmount) <= MAX_SUPPLY, "MOMA: Max supply exceeded");
        _vestingList[user].isActive = false;
        _mint(user, claimableAmount);
    }

    function getVestingInfoByUser(address user) external view returns (VestingInfo memory) {
        return _vestingList[user];
    }

    function _getVestingClaimableAmount(address user)
        internal
        view
        returns (uint256 claimableAmount)
    {
        if (!_vestingList[user].isActive) return 0;
        VestingInfo memory info = _vestingList[user];
        uint256 releaseTime = info.startTime.add(info.fullLockedDays.mul(1 days));
        if (block.timestamp < releaseTime) return 0;
        uint256 roundsPassed =
            (block.timestamp.sub(releaseTime)).div(1 days).div(info.daysPerRound);

        uint256 releasedAmount;
        if (roundsPassed >= info.releaseTotalRounds) {
            releasedAmount = info.amount;
        } else {
            releasedAmount = info.amount.mul(roundsPassed).div(info.releaseTotalRounds);
        }
        claimableAmount = 0;
        if (releasedAmount > info.claimedAmount) {
            claimableAmount = releasedAmount.sub(info.claimedAmount);
        }
    }

    function getVestingClaimableAmount(address user) external view returns (uint256) {
        return _getVestingClaimableAmount(user);
    }

    function claimVestingToken() external nonReentrant returns (uint256) {
        require(_vestingList[_msgSender()].isActive, "MOMA: Not in vesting list");
        uint256 claimableAmount = _getVestingClaimableAmount(_msgSender());
        require(claimableAmount > 0, "MOMA: Nothing to claim");
        require(totalSupply().add(claimableAmount) <= MAX_SUPPLY, "MOMA: Max supply exceeded");
        _vestingList[_msgSender()].claimedAmount = _vestingList[_msgSender()].claimedAmount.add(
            claimableAmount
        );
        _mint(_msgSender(), claimableAmount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        super._beforeTokenTransfer(from, to, amount);
        if (_blacklist[from].locked) {
            uint256 lockedBalance = remainLockedBalance(from);
            require(
                balanceOf(from).sub(amount) >= lockedBalance,
                "MOMA BLACKLIST: Cannot transfer locked balance"
            );
        }
    }

    function withdrawERC20(address token, uint256 amount) external onlyAdmin {
        require(amount > 0, "MOMA: Amount must be greater than 0");
        require(IERC20(token).balanceOf(address(this)) >= amount, "MOMA: ERC20 not enough balance");
        require(IERC20(token).transfer(_msgSender(), amount), "MOMA: transfer ERC20 failed");
    }

    receive() external payable {
        revert();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"multiSigAccount","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BLACKLIST_EFFECTIVE_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BLACKLIST_LOCK_DAYS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DECIMAL_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCKER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"fullLockedDays","type":"uint256"},{"internalType":"uint256","name":"releaseTotalRounds","type":"uint256"},{"internalType":"uint256","name":"daysPerRound","type":"uint256"}],"name":"addVestingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimVestingToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getBlacklistByUser","outputs":[{"components":[{"internalType":"bool","name":"locked","type":"bool"},{"internalType":"uint256","name":"lockedFrom","type":"uint256"},{"internalType":"uint256","name":"initLockedBalance","type":"uint256"}],"internalType":"struct MOMA.BlacklistInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getVestingClaimableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getVestingInfoByUser","outputs":[{"components":[{"internalType":"bool","name":"isActive","type":"bool"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"claimedAmount","type":"uint256"},{"internalType":"uint256","name":"fullLockedDays","type":"uint256"},{"internalType":"uint256","name":"releaseTotalRounds","type":"uint256"},{"internalType":"uint256","name":"daysPerRound","type":"uint256"}],"internalType":"struct MOMA.VestingInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"remainLockedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"revokeVestingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200384b3803806200384b833981016040819052620000349162000a20565b6040518060400160405280600c81526020016b1353d8da1a4813505c9ad95d60a21b815250604051806040016040528060048152602001634d4f4d4160e01b815250818181600490805190602001906200009092919062000961565b508051620000a690600590602084019062000961565b50506006805461ff001960ff1990911660121716905550620000d36000620000cd6200021f565b62000223565b620000f16000805160206200382b833981519152620000cd6200021f565b6200010f6000805160206200380b833981519152620000cd6200021f565b50506001600755620001314262278d0062000233602090811b620014f917901c565b60085562000154620001426200021f565b6a0422ca8b0a00a4250000006200026d565b6200016160008262000223565b6200017c6000805160206200382b8339815191528262000223565b620001976000805160206200380b8339815191528262000223565b620001c67faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279620000cd6200021f565b620001dc6000620001d66200021f565b62000352565b620001fa6000805160206200382b833981519152620001d66200021f565b620002186000805160206200380b833981519152620001d66200021f565b5062000c3e565b3390565b6200022f82826200039b565b5050565b600082820183811015620002645760405162461bcd60e51b81526004016200025b9062000a9f565b60405180910390fd5b90505b92915050565b6001600160a01b038216620002965760405162461bcd60e51b81526004016200025b9062000bb4565b620002a46000838362000414565b620002c0816003546200023360201b620014f91790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620002f5918390620014f962000233821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200034690859062000c35565b60405180910390a35050565b6200035c6200021f565b6001600160a01b0316816001600160a01b0316146200038f5760405162461bcd60e51b81526004016200025b9062000b65565b6200022f8282620004aa565b600082815260208181526040909120620003c09183906200151e62000523821b17901c565b156200022f57620003d06200021f565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6200042c8383836200053a60201b620015331760201c565b6001600160a01b03831660009081526009602052604090205460ff1615620004a55760006200045b8462000552565b90508062000482836200046e8762000593565b620005ae60201b6200153e1790919060201c565b1015620004a35760405162461bcd60e51b81526004016200025b9062000ad6565b505b505050565b600082815260208181526040909120620004cf91839062001580620005f8821b17901c565b156200022f57620004df6200021f565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600062000264836001600160a01b0384166200060f565b620004a58383836200065e60201b620015951760201c565b6000620002676200056383620006a0565b6001600160a01b03841660009081526009602090815260409091206002015491906200153e620005ae821b17901c565b6001600160a01b031660009081526001602052604090205490565b60006200026483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200077b60201b60201c565b600062000264836001600160a01b038416620007aa565b60006200061d838362000876565b620006555750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000267565b50600062000267565b62000676838383620004a560201b62000fab1760201c565b620006806200088e565b15620004a55760405162461bcd60e51b81526004016200025b9062000beb565b6000620006ac620009e6565b506001600160a01b03821660009081526009602090815260408083208151606081018352815460ff161515815260018201548185018190526002909201549281019290925290929162000728916201518091620007149142916200153e620005ae821b17901c565b6200089c60201b620015c51790919060201c565b825190915080156200073a5750603281105b156200076c5762000764603262000714846040015184620008e660201b620016071790919060201c565b925062000774565b816040015192505b5050919050565b60008184841115620007a25760405162461bcd60e51b81526004016200025b919062000a49565b505050900390565b600081815260018301602052604081205480156200086b5783546000198083019190810190600090879083908110620007df57fe5b9060005260206000200154905080876000018481548110620007fd57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806200082e57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505062000267565b600091505062000267565b60009081526001919091016020526040902054151590565b600654610100900460ff1690565b60006200026483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200092660201b60201c565b600082620008f75750600062000267565b828202828482816200090557fe5b0414620002645760405162461bcd60e51b81526004016200025b9062000b24565b600081836200094a5760405162461bcd60e51b81526004016200025b919062000a49565b5060008385816200095757fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620009a457805160ff1916838001178555620009d4565b82800160010185558215620009d4579182015b82811115620009d4578251825591602001919060010190620009b7565b50620009e292915062000a09565b5090565b604051806060016040528060001515815260200160008152602001600081525090565b5b80821115620009e2576000815560010162000a0a565b60006020828403121562000a32578081fd5b81516001600160a01b038116811462000264578182fd5b6000602080835283518082850152825b8181101562000a775785810183015185820160400152820162000a59565b8181111562000a895783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252602e908201527f4d4f4d4120424c41434b4c4953543a2043616e6e6f74207472616e736665722060408201526d6c6f636b65642062616c616e636560901b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686040820152691a5b19481c185d5cd95960b21b606082015260800190565b90815260200190565b612bbd8062000c4e6000396000f3fe60806040526004361061026b5760003560e01c80635f11417a11610144578063a457c2d7116100b6578063d547741f1161007a578063d547741f146106fb578063d84f35501461071b578063dd62ed3e1461073b578063e63ab1e91461075b578063f362136714610770578063fbac39511461078557610275565b8063a457c2d714610666578063a9059cbb14610686578063b00efc59146106a6578063ca15c873146106c6578063d5391393146106e657610275565b80638e5f72a0116101085780638e5f72a0146105a25780639010d07c146105cf57806391d14854146105fc57806395d89b411461061c578063a1db978214610631578063a217fddf1461065157610275565b80635f11417a14610518578063650fd2f71461053857806370a082311461054d57806379cc67901461056d5780638456cb591461058d57610275565b806336568abe116101dd57806340c10f19116101a157806340c10f191461045657806342966c681461047657806344337ea114610496578063452d0088146104b6578063537df3b6146104e35780635c975abb1461050357610275565b806336568abe146103d757806338889d35146103f7578063395093511461040c5780633be0e2151461042c5780633f4ba83a1461044157610275565b8063244795921161022f5780632447959214610329578063248a9ca31461034b5780632f2ff15d1461036b5780632ff2e9dc1461038b578063313ce567146103a057806332cb6b0c146103c257610275565b806306fdde031461027a578063095ea7b3146102a557806318160ddd146102d25780631aef8058146102f457806323b872dd1461030957610275565b3661027557600080fd5b600080fd5b34801561028657600080fd5b5061028f6107a5565b60405161029c9190612219565b60405180910390f35b3480156102b157600080fd5b506102c56102c03660046120cb565b61083b565b60405161029c9190612205565b3480156102de57600080fd5b506102e7610859565b60405161029c9190612210565b34801561030057600080fd5b506102e761085f565b34801561031557600080fd5b506102c561032436600461208b565b61086b565b34801561033557600080fd5b506103496103443660046120f5565b6108f2565b005b34801561035757600080fd5b506102e7610366366004612158565b610a19565b34801561037757600080fd5b50610349610386366004612170565b610a31565b34801561039757600080fd5b506102e7610a79565b3480156103ac57600080fd5b506103b5610a88565b60405161029c9190612aab565b3480156103ce57600080fd5b506102e7610a91565b3480156103e357600080fd5b506103496103f2366004612170565b610aa0565b34801561040357600080fd5b506102e7610ae2565b34801561041857600080fd5b506102c56104273660046120cb565b610ae9565b34801561043857600080fd5b506102e7610b37565b34801561044d57600080fd5b50610349610b3c565b34801561046257600080fd5b506103496104713660046120cb565b610b8e565b34801561048257600080fd5b50610349610491366004612158565b610c1c565b3480156104a257600080fd5b506103496104b136600461203c565b610c30565b3480156104c257600080fd5b506104d66104d136600461203c565b610cfb565b60405161029c9190612a38565b3480156104ef57600080fd5b506103496104fe36600461203c565b610d4a565b34801561050f57600080fd5b506102c5610db3565b34801561052457600080fd5b506102e761053336600461203c565b610dc1565b34801561054457600080fd5b506102e7610df1565b34801561055957600080fd5b506102e761056836600461203c565b610f40565b34801561057957600080fd5b506103496105883660046120cb565b610f5b565b34801561059957600080fd5b50610349610fb0565b3480156105ae57600080fd5b506105c26105bd36600461203c565b611000565b60405161029c9190612a5b565b3480156105db57600080fd5b506105ef6105ea36600461219f565b611079565b60405161029c91906121d8565b34801561060857600080fd5b506102c5610617366004612170565b611098565b34801561062857600080fd5b5061028f6110b0565b34801561063d57600080fd5b5061034961064c3660046120cb565b611111565b34801561065d57600080fd5b506102e7611299565b34801561067257600080fd5b506102c56106813660046120cb565b61129e565b34801561069257600080fd5b506102c56106a13660046120cb565b611306565b3480156106b257600080fd5b506102e76106c136600461203c565b61131a565b3480156106d257600080fd5b506102e76106e1366004612158565b611325565b3480156106f257600080fd5b506102e761133c565b34801561070757600080fd5b50610349610716366004612170565b611360565b34801561072757600080fd5b5061034961073636600461203c565b61139a565b34801561074757600080fd5b506102e7610756366004612057565b611468565b34801561076757600080fd5b506102e7611493565b34801561077c57600080fd5b506102e76114b7565b34801561079157600080fd5b506102c56107a036600461203c565b6114db565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b600061084f610848611641565b8484611645565b5060015b92915050565b60035490565b670de0b6b3a764000081565b60006108788484846116f9565b6108e884610884611641565b6108e385604051806060016040528060288152602001612b17602891396001600160a01b038a166000908152600260205260408120906108c2611641565b6001600160a01b03168152602081019190915260400160002054919061180e565b611645565b5060019392505050565b6108ff6000610617611641565b6109245760405162461bcd60e51b815260040161091b90612563565b60405180910390fd5b6001600160a01b03851661094a5760405162461bcd60e51b815260040161091b906127fd565b6001600160a01b0385166000908152600a602052604090205460ff16156109835760405162461bcd60e51b815260040161091b90612707565b61098b611fc3565b506040805160e081018252600180825260208083019788524283850190815260006060850181815260808601998a5260a0860198895260c086019788526001600160a01b039b909b168152600a9092529390209151825460ff191690151517825595519581019590955551600285015593516003840155905160048301555160058201559051600690910155565b6000818152602081905260409020600201545b919050565b600082815260208190526040902060020154610a4f90610617611641565b610a6b5760405162461bcd60e51b815260040161091b906122f1565b610a75828261183a565b5050565b6a0422ca8b0a00a42500000081565b60065460ff1690565b6a52b7d2dcc80cd2e400000081565b610aa8611641565b6001600160a01b0316816001600160a01b031614610ad85760405162461bcd60e51b815260040161091b90612968565b610a7582826118a3565b62278d0081565b600061084f610af6611641565b846108e38560026000610b07611641565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906114f9565b603281565b610b687f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610617611641565b610b845760405162461bcd60e51b815260040161091b906123a5565b610b8c61190c565b565b610bba7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610617611641565b610bd65760405162461bcd60e51b815260040161091b9061236e565b6a52b7d2dcc80cd2e4000000610bf482610bee610859565b906114f9565b1115610c125760405162461bcd60e51b815260040161091b90612699565b610a75828261197e565b610c2d610c27611641565b82611a3e565b50565b610c5c7faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279610617611641565b610c785760405162461bcd60e51b815260040161091b90612829565b6008544210610c995760405162461bcd60e51b815260040161091b90612402565b6040805160608101825260018152426020820152908101610cb983610f40565b90526001600160a01b03919091166000908152600960209081526040918290208351815460ff1916901515178155908301516001820155910151600290910155565b610d03612002565b506001600160a01b03166000908152600960209081526040918290208251606081018452815460ff1615158152600182015492810192909252600201549181019190915290565b610d767faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279610617611641565b610d925760405162461bcd60e51b815260040161091b90612829565b6001600160a01b03166000908152600960205260409020805460ff19169055565b600654610100900460ff1690565b6000610853610dcf83611b14565b6001600160a01b0384166000908152600960205260409020600201549061153e565b600060026007541415610e165760405162461bcd60e51b815260040161091b90612901565b6002600755600a6000610e27611641565b6001600160a01b0316815260208101919091526040016000205460ff16610e605760405162461bcd60e51b815260040161091b9061247b565b6000610e72610e6d611641565b611bc7565b905060008111610e945760405162461bcd60e51b815260040161091b90612938565b6a52b7d2dcc80cd2e4000000610eac82610bee610859565b1115610eca5760405162461bcd60e51b815260040161091b90612699565b610efd81600a6000610eda611641565b6001600160a01b03168152602081019190915260400160002060030154906114f9565b600a6000610f09611641565b6001600160a01b03168152602081019190915260400160002060030155610f37610f31611641565b8261197e565b50600160075590565b6001600160a01b031660009081526001602052604090205490565b6000610f8d82604051806060016040528060248152602001612b3f60249139610f8686610756611641565b919061180e565b9050610fa183610f9b611641565b83611645565b610fab8383611a3e565b505050565b610fdc7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610617611641565b610ff85760405162461bcd60e51b815260040161091b906128a4565b610b8c611d1e565b611008611fc3565b506001600160a01b03166000908152600a6020908152604091829020825160e081018452815460ff16151581526001820154928101929092526002810154928201929092526003820154606082015260048201546080820152600582015460a082015260069091015460c082015290565b60008281526020819052604081206110919083611d7e565b9392505050565b60008281526020819052604081206110919083611d8a565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108315780601f1061080657610100808354040283529160200191610831565b61111e6000610617611641565b61113a5760405162461bcd60e51b815260040161091b90612563565b6000811161115a5760405162461bcd60e51b815260040161091b906124e9565b6040516370a0823160e01b815281906001600160a01b038416906370a08231906111889030906004016121d8565b60206040518083038186803b1580156111a057600080fd5b505afa1580156111b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d891906121c0565b10156111f65760405162461bcd60e51b815260040161091b90612662565b816001600160a01b031663a9059cbb61120d611641565b836040518363ffffffff1660e01b815260040161122b9291906121ec565b602060405180830381600087803b15801561124557600080fd5b505af1158015611259573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127d9190612138565b610a755760405162461bcd60e51b815260040161091b906126d0565b600081565b600061084f6112ab611641565b846108e385604051806060016040528060258152602001612b6360259139600260006112d5611641565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061180e565b600061084f611313611641565b84846116f9565b600061085382611bc7565b600081815260208190526040812061085390611d9f565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b60008281526020819052604090206002015461137e90610617611641565b610ad85760405162461bcd60e51b815260040161091b9061259a565b6113a76000610617611641565b6113c35760405162461bcd60e51b815260040161091b90612563565b6001600160a01b0381166000908152600a602052604090205460ff166113fb5760405162461bcd60e51b815260040161091b9061252c565b600061140682611bc7565b90506a52b7d2dcc80cd2e400000061142082610bee610859565b111561143e5760405162461bcd60e51b815260040161091b90612699565b6001600160a01b0382166000908152600a60205260409020805460ff19169055610a75828261197e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a9027981565b6001600160a01b031660009081526009602052604090205460ff1690565b6000828201838110156110915760405162461bcd60e51b815260040161091b906124b2565b6000611091836001600160a01b038416611daa565b610fab838383611595565b600061109183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061180e565b6000611091836001600160a01b038416611df4565b6115a0838383610fab565b6115a8610db3565b15610fab5760405162461bcd60e51b815260040161091b906129ee565b600061109183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611eba565b60008261161657506000610853565b8282028284828161162357fe5b04146110915760405162461bcd60e51b815260040161091b90612736565b3390565b6001600160a01b03831661166b5760405162461bcd60e51b815260040161091b90612860565b6001600160a01b0382166116915760405162461bcd60e51b815260040161091b90612439565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906116ec908590612210565b60405180910390a3505050565b6001600160a01b03831661171f5760405162461bcd60e51b815260040161091b906127b8565b6001600160a01b0382166117455760405162461bcd60e51b815260040161091b906122ae565b611750838383611ef1565b61178d81604051806060016040528060268152602001612af1602691396001600160a01b038616600090815260016020526040902054919061180e565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546117bc90826114f9565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116ec908590612210565b600081848411156118325760405162461bcd60e51b815260040161091b9190612219565b505050900390565b6000828152602081905260409020611852908261151e565b15610a755761185f611641565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206118bb9082611580565b15610a75576118c8611641565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600654610100900460ff166119335760405162461bcd60e51b815260040161091b90612340565b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611967611641565b60405161197491906121d8565b60405180910390a1565b6001600160a01b0382166119a45760405162461bcd60e51b815260040161091b906129b7565b6119b060008383611ef1565b6003546119bd90826114f9565b6003556001600160a01b0382166000908152600160205260409020546119e390826114f9565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a32908590612210565b60405180910390a35050565b6001600160a01b038216611a645760405162461bcd60e51b815260040161091b90612777565b611a7082600083611ef1565b611aad81604051806060016040528060228152602001612acf602291396001600160a01b038516600090815260016020526040902054919061180e565b6001600160a01b038316600090815260016020526040902055600354611ad3908261153e565b6003556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a32908590612210565b6000611b1e612002565b506001600160a01b03821660009081526009602090815260408083208151606081018352815460ff16151581526001820154938101849052600290910154918101919091529190611b7f906201518090611b7990429061153e565b906115c5565b82519091508015611b905750603281105b15611bb857611bb16032611b7984604001518461160790919063ffffffff16565b9250611bc0565b816040015192505b5050919050565b6001600160a01b0381166000908152600a602052604081205460ff16611bef57506000610a2c565b611bf7611fc3565b506001600160a01b0382166000908152600a60209081526040808320815160e081018352815460ff161515815260018201549381019390935260028101549183019190915260038101546060830152600481015460808301819052600582015460a084015260069091015460c0830152909190611c8690611c7b9062015180611607565b6040840151906114f9565b905080421015611c9b57600092505050610a2c565b60c0820151600090611cb690611b796201518081428761153e565b905060008360a001518210611cd057506020830151611cf2565b611cef8460a00151611b7984876020015161160790919063ffffffff16565b90505b600094508360600151811115611d15576060840151611d1290829061153e565b94505b50505050919050565b600654610100900460ff1615611d465760405162461bcd60e51b815260040161091b906125ea565b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611967611641565b60006110918383611f62565b6000611091836001600160a01b038416611fa7565b600061085382611fbf565b6000611db68383611fa7565b611dec57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610853565b506000610853565b60008181526001830160205260408120548015611eb05783546000198083019190810190600090879083908110611e2757fe5b9060005260206000200154905080876000018481548110611e4457fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611e7457fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610853565b6000915050610853565b60008183611edb5760405162461bcd60e51b815260040161091b9190612219565b506000838581611ee757fe5b0495945050505050565b611efc838383611533565b6001600160a01b03831660009081526009602052604090205460ff1615610fab576000611f2884610dc1565b905080611f3e83611f3887610f40565b9061153e565b1015611f5c5760405162461bcd60e51b815260040161091b90612614565b50505050565b81546000908210611f855760405162461bcd60e51b815260040161091b9061226c565b826000018281548110611f9457fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6040518060e001604052806000151581526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060001515815260200160008152602001600081525090565b80356001600160a01b038116811461085357600080fd5b60006020828403121561204d578081fd5b6110918383612025565b60008060408385031215612069578081fd5b6120738484612025565b91506120828460208501612025565b90509250929050565b60008060006060848603121561209f578081fd5b83356120aa81612ab9565b925060208401356120ba81612ab9565b929592945050506040919091013590565b600080604083850312156120dd578182fd5b6120e78484612025565b946020939093013593505050565b600080600080600060a0868803121561210c578081fd5b853561211781612ab9565b97602087013597506040870135966060810135965060800135945092505050565b600060208284031215612149578081fd5b81518015158114611091578182fd5b600060208284031215612169578081fd5b5035919050565b60008060408385031215612182578182fd5b82359150602083013561219481612ab9565b809150509250929050565b600080604083850312156121b1578182fd5b50508035926020909101359150565b6000602082840312156121d1578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b8181101561224557858101830151858201604001528201612229565b818111156122565783604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601a908201527f4d4f4d413a204d494e54455220726f6c65207265717569726564000000000000604082015260600190565b60208082526039908201527f45524332305072657365744d696e7465725061757365723a206d75737420686160408201527f76652070617573657220726f6c6520746f20756e706175736500000000000000606082015260800190565b6020808252601b908201527f4d4f4d413a20466f726365206c6f636b2074696d6520656e6465640000000000604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526019908201527f4d4f4d413a204e6f7420696e2076657374696e67206c69737400000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526023908201527f4d4f4d413a20416d6f756e74206d75737420626520677265617465722074686160408201526206e20360ec1b606082015260800190565b60208082526019908201527f4d4f4d413a20496e76616c69642062656e656669636961727900000000000000604082015260600190565b60208082526019908201527f4d4f4d413a2041444d494e20726f6c6520726571756972656400000000000000604082015260600190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252602e908201527f4d4f4d4120424c41434b4c4953543a2043616e6e6f74207472616e736665722060408201526d6c6f636b65642062616c616e636560901b606082015260800190565b6020808252601e908201527f4d4f4d413a204552433230206e6f7420656e6f7567682062616c616e63650000604082015260600190565b60208082526019908201527f4d4f4d413a204d617820737570706c7920657863656564656400000000000000604082015260600190565b6020808252601b908201527f4d4f4d413a207472616e73666572204552433230206661696c65640000000000604082015260600190565b6020808252601590820152744d4f4d413a20496e76616c69642076657374696e6760581b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601290820152714d4f4d413a205a65726f206164647265737360701b604082015260600190565b6020808252601a908201527f4d4f4d413a204c4f434b455220726f6c65207265717569726564000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526037908201527f45524332305072657365744d696e7465725061757365723a206d75737420686160408201527f76652070617573657220726f6c6520746f207061757365000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601690820152754d4f4d413a204e6f7468696e6720746f20636c61696d60501b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686040820152691a5b19481c185d5cd95960b21b606082015260800190565b815115158152602080830151908201526040918201519181019190915260600190565b600060e0820190508251151582526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015292915050565b60ff91909116815260200190565b6001600160a01b0381168114610c2d57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200282652f8f7b8e9c6d926c7b066428d40b319fa5993dd81dc24d7a46766f8f7f64736f6c634300060c003365d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6000000000000000000000000a3dd79b9109e62cc3ecdabdd7f40f23a57d2d61c

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80635f11417a11610144578063a457c2d7116100b6578063d547741f1161007a578063d547741f146106fb578063d84f35501461071b578063dd62ed3e1461073b578063e63ab1e91461075b578063f362136714610770578063fbac39511461078557610275565b8063a457c2d714610666578063a9059cbb14610686578063b00efc59146106a6578063ca15c873146106c6578063d5391393146106e657610275565b80638e5f72a0116101085780638e5f72a0146105a25780639010d07c146105cf57806391d14854146105fc57806395d89b411461061c578063a1db978214610631578063a217fddf1461065157610275565b80635f11417a14610518578063650fd2f71461053857806370a082311461054d57806379cc67901461056d5780638456cb591461058d57610275565b806336568abe116101dd57806340c10f19116101a157806340c10f191461045657806342966c681461047657806344337ea114610496578063452d0088146104b6578063537df3b6146104e35780635c975abb1461050357610275565b806336568abe146103d757806338889d35146103f7578063395093511461040c5780633be0e2151461042c5780633f4ba83a1461044157610275565b8063244795921161022f5780632447959214610329578063248a9ca31461034b5780632f2ff15d1461036b5780632ff2e9dc1461038b578063313ce567146103a057806332cb6b0c146103c257610275565b806306fdde031461027a578063095ea7b3146102a557806318160ddd146102d25780631aef8058146102f457806323b872dd1461030957610275565b3661027557600080fd5b600080fd5b34801561028657600080fd5b5061028f6107a5565b60405161029c9190612219565b60405180910390f35b3480156102b157600080fd5b506102c56102c03660046120cb565b61083b565b60405161029c9190612205565b3480156102de57600080fd5b506102e7610859565b60405161029c9190612210565b34801561030057600080fd5b506102e761085f565b34801561031557600080fd5b506102c561032436600461208b565b61086b565b34801561033557600080fd5b506103496103443660046120f5565b6108f2565b005b34801561035757600080fd5b506102e7610366366004612158565b610a19565b34801561037757600080fd5b50610349610386366004612170565b610a31565b34801561039757600080fd5b506102e7610a79565b3480156103ac57600080fd5b506103b5610a88565b60405161029c9190612aab565b3480156103ce57600080fd5b506102e7610a91565b3480156103e357600080fd5b506103496103f2366004612170565b610aa0565b34801561040357600080fd5b506102e7610ae2565b34801561041857600080fd5b506102c56104273660046120cb565b610ae9565b34801561043857600080fd5b506102e7610b37565b34801561044d57600080fd5b50610349610b3c565b34801561046257600080fd5b506103496104713660046120cb565b610b8e565b34801561048257600080fd5b50610349610491366004612158565b610c1c565b3480156104a257600080fd5b506103496104b136600461203c565b610c30565b3480156104c257600080fd5b506104d66104d136600461203c565b610cfb565b60405161029c9190612a38565b3480156104ef57600080fd5b506103496104fe36600461203c565b610d4a565b34801561050f57600080fd5b506102c5610db3565b34801561052457600080fd5b506102e761053336600461203c565b610dc1565b34801561054457600080fd5b506102e7610df1565b34801561055957600080fd5b506102e761056836600461203c565b610f40565b34801561057957600080fd5b506103496105883660046120cb565b610f5b565b34801561059957600080fd5b50610349610fb0565b3480156105ae57600080fd5b506105c26105bd36600461203c565b611000565b60405161029c9190612a5b565b3480156105db57600080fd5b506105ef6105ea36600461219f565b611079565b60405161029c91906121d8565b34801561060857600080fd5b506102c5610617366004612170565b611098565b34801561062857600080fd5b5061028f6110b0565b34801561063d57600080fd5b5061034961064c3660046120cb565b611111565b34801561065d57600080fd5b506102e7611299565b34801561067257600080fd5b506102c56106813660046120cb565b61129e565b34801561069257600080fd5b506102c56106a13660046120cb565b611306565b3480156106b257600080fd5b506102e76106c136600461203c565b61131a565b3480156106d257600080fd5b506102e76106e1366004612158565b611325565b3480156106f257600080fd5b506102e761133c565b34801561070757600080fd5b50610349610716366004612170565b611360565b34801561072757600080fd5b5061034961073636600461203c565b61139a565b34801561074757600080fd5b506102e7610756366004612057565b611468565b34801561076757600080fd5b506102e7611493565b34801561077c57600080fd5b506102e76114b7565b34801561079157600080fd5b506102c56107a036600461203c565b6114db565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b600061084f610848611641565b8484611645565b5060015b92915050565b60035490565b670de0b6b3a764000081565b60006108788484846116f9565b6108e884610884611641565b6108e385604051806060016040528060288152602001612b17602891396001600160a01b038a166000908152600260205260408120906108c2611641565b6001600160a01b03168152602081019190915260400160002054919061180e565b611645565b5060019392505050565b6108ff6000610617611641565b6109245760405162461bcd60e51b815260040161091b90612563565b60405180910390fd5b6001600160a01b03851661094a5760405162461bcd60e51b815260040161091b906127fd565b6001600160a01b0385166000908152600a602052604090205460ff16156109835760405162461bcd60e51b815260040161091b90612707565b61098b611fc3565b506040805160e081018252600180825260208083019788524283850190815260006060850181815260808601998a5260a0860198895260c086019788526001600160a01b039b909b168152600a9092529390209151825460ff191690151517825595519581019590955551600285015593516003840155905160048301555160058201559051600690910155565b6000818152602081905260409020600201545b919050565b600082815260208190526040902060020154610a4f90610617611641565b610a6b5760405162461bcd60e51b815260040161091b906122f1565b610a75828261183a565b5050565b6a0422ca8b0a00a42500000081565b60065460ff1690565b6a52b7d2dcc80cd2e400000081565b610aa8611641565b6001600160a01b0316816001600160a01b031614610ad85760405162461bcd60e51b815260040161091b90612968565b610a7582826118a3565b62278d0081565b600061084f610af6611641565b846108e38560026000610b07611641565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906114f9565b603281565b610b687f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610617611641565b610b845760405162461bcd60e51b815260040161091b906123a5565b610b8c61190c565b565b610bba7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610617611641565b610bd65760405162461bcd60e51b815260040161091b9061236e565b6a52b7d2dcc80cd2e4000000610bf482610bee610859565b906114f9565b1115610c125760405162461bcd60e51b815260040161091b90612699565b610a75828261197e565b610c2d610c27611641565b82611a3e565b50565b610c5c7faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279610617611641565b610c785760405162461bcd60e51b815260040161091b90612829565b6008544210610c995760405162461bcd60e51b815260040161091b90612402565b6040805160608101825260018152426020820152908101610cb983610f40565b90526001600160a01b03919091166000908152600960209081526040918290208351815460ff1916901515178155908301516001820155910151600290910155565b610d03612002565b506001600160a01b03166000908152600960209081526040918290208251606081018452815460ff1615158152600182015492810192909252600201549181019190915290565b610d767faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279610617611641565b610d925760405162461bcd60e51b815260040161091b90612829565b6001600160a01b03166000908152600960205260409020805460ff19169055565b600654610100900460ff1690565b6000610853610dcf83611b14565b6001600160a01b0384166000908152600960205260409020600201549061153e565b600060026007541415610e165760405162461bcd60e51b815260040161091b90612901565b6002600755600a6000610e27611641565b6001600160a01b0316815260208101919091526040016000205460ff16610e605760405162461bcd60e51b815260040161091b9061247b565b6000610e72610e6d611641565b611bc7565b905060008111610e945760405162461bcd60e51b815260040161091b90612938565b6a52b7d2dcc80cd2e4000000610eac82610bee610859565b1115610eca5760405162461bcd60e51b815260040161091b90612699565b610efd81600a6000610eda611641565b6001600160a01b03168152602081019190915260400160002060030154906114f9565b600a6000610f09611641565b6001600160a01b03168152602081019190915260400160002060030155610f37610f31611641565b8261197e565b50600160075590565b6001600160a01b031660009081526001602052604090205490565b6000610f8d82604051806060016040528060248152602001612b3f60249139610f8686610756611641565b919061180e565b9050610fa183610f9b611641565b83611645565b610fab8383611a3e565b505050565b610fdc7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610617611641565b610ff85760405162461bcd60e51b815260040161091b906128a4565b610b8c611d1e565b611008611fc3565b506001600160a01b03166000908152600a6020908152604091829020825160e081018452815460ff16151581526001820154928101929092526002810154928201929092526003820154606082015260048201546080820152600582015460a082015260069091015460c082015290565b60008281526020819052604081206110919083611d7e565b9392505050565b60008281526020819052604081206110919083611d8a565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108315780601f1061080657610100808354040283529160200191610831565b61111e6000610617611641565b61113a5760405162461bcd60e51b815260040161091b90612563565b6000811161115a5760405162461bcd60e51b815260040161091b906124e9565b6040516370a0823160e01b815281906001600160a01b038416906370a08231906111889030906004016121d8565b60206040518083038186803b1580156111a057600080fd5b505afa1580156111b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d891906121c0565b10156111f65760405162461bcd60e51b815260040161091b90612662565b816001600160a01b031663a9059cbb61120d611641565b836040518363ffffffff1660e01b815260040161122b9291906121ec565b602060405180830381600087803b15801561124557600080fd5b505af1158015611259573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127d9190612138565b610a755760405162461bcd60e51b815260040161091b906126d0565b600081565b600061084f6112ab611641565b846108e385604051806060016040528060258152602001612b6360259139600260006112d5611641565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061180e565b600061084f611313611641565b84846116f9565b600061085382611bc7565b600081815260208190526040812061085390611d9f565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b60008281526020819052604090206002015461137e90610617611641565b610ad85760405162461bcd60e51b815260040161091b9061259a565b6113a76000610617611641565b6113c35760405162461bcd60e51b815260040161091b90612563565b6001600160a01b0381166000908152600a602052604090205460ff166113fb5760405162461bcd60e51b815260040161091b9061252c565b600061140682611bc7565b90506a52b7d2dcc80cd2e400000061142082610bee610859565b111561143e5760405162461bcd60e51b815260040161091b90612699565b6001600160a01b0382166000908152600a60205260409020805460ff19169055610a75828261197e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a9027981565b6001600160a01b031660009081526009602052604090205460ff1690565b6000828201838110156110915760405162461bcd60e51b815260040161091b906124b2565b6000611091836001600160a01b038416611daa565b610fab838383611595565b600061109183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061180e565b6000611091836001600160a01b038416611df4565b6115a0838383610fab565b6115a8610db3565b15610fab5760405162461bcd60e51b815260040161091b906129ee565b600061109183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611eba565b60008261161657506000610853565b8282028284828161162357fe5b04146110915760405162461bcd60e51b815260040161091b90612736565b3390565b6001600160a01b03831661166b5760405162461bcd60e51b815260040161091b90612860565b6001600160a01b0382166116915760405162461bcd60e51b815260040161091b90612439565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906116ec908590612210565b60405180910390a3505050565b6001600160a01b03831661171f5760405162461bcd60e51b815260040161091b906127b8565b6001600160a01b0382166117455760405162461bcd60e51b815260040161091b906122ae565b611750838383611ef1565b61178d81604051806060016040528060268152602001612af1602691396001600160a01b038616600090815260016020526040902054919061180e565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546117bc90826114f9565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116ec908590612210565b600081848411156118325760405162461bcd60e51b815260040161091b9190612219565b505050900390565b6000828152602081905260409020611852908261151e565b15610a755761185f611641565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206118bb9082611580565b15610a75576118c8611641565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600654610100900460ff166119335760405162461bcd60e51b815260040161091b90612340565b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611967611641565b60405161197491906121d8565b60405180910390a1565b6001600160a01b0382166119a45760405162461bcd60e51b815260040161091b906129b7565b6119b060008383611ef1565b6003546119bd90826114f9565b6003556001600160a01b0382166000908152600160205260409020546119e390826114f9565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a32908590612210565b60405180910390a35050565b6001600160a01b038216611a645760405162461bcd60e51b815260040161091b90612777565b611a7082600083611ef1565b611aad81604051806060016040528060228152602001612acf602291396001600160a01b038516600090815260016020526040902054919061180e565b6001600160a01b038316600090815260016020526040902055600354611ad3908261153e565b6003556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a32908590612210565b6000611b1e612002565b506001600160a01b03821660009081526009602090815260408083208151606081018352815460ff16151581526001820154938101849052600290910154918101919091529190611b7f906201518090611b7990429061153e565b906115c5565b82519091508015611b905750603281105b15611bb857611bb16032611b7984604001518461160790919063ffffffff16565b9250611bc0565b816040015192505b5050919050565b6001600160a01b0381166000908152600a602052604081205460ff16611bef57506000610a2c565b611bf7611fc3565b506001600160a01b0382166000908152600a60209081526040808320815160e081018352815460ff161515815260018201549381019390935260028101549183019190915260038101546060830152600481015460808301819052600582015460a084015260069091015460c0830152909190611c8690611c7b9062015180611607565b6040840151906114f9565b905080421015611c9b57600092505050610a2c565b60c0820151600090611cb690611b796201518081428761153e565b905060008360a001518210611cd057506020830151611cf2565b611cef8460a00151611b7984876020015161160790919063ffffffff16565b90505b600094508360600151811115611d15576060840151611d1290829061153e565b94505b50505050919050565b600654610100900460ff1615611d465760405162461bcd60e51b815260040161091b906125ea565b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611967611641565b60006110918383611f62565b6000611091836001600160a01b038416611fa7565b600061085382611fbf565b6000611db68383611fa7565b611dec57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610853565b506000610853565b60008181526001830160205260408120548015611eb05783546000198083019190810190600090879083908110611e2757fe5b9060005260206000200154905080876000018481548110611e4457fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611e7457fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610853565b6000915050610853565b60008183611edb5760405162461bcd60e51b815260040161091b9190612219565b506000838581611ee757fe5b0495945050505050565b611efc838383611533565b6001600160a01b03831660009081526009602052604090205460ff1615610fab576000611f2884610dc1565b905080611f3e83611f3887610f40565b9061153e565b1015611f5c5760405162461bcd60e51b815260040161091b90612614565b50505050565b81546000908210611f855760405162461bcd60e51b815260040161091b9061226c565b826000018281548110611f9457fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6040518060e001604052806000151581526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060001515815260200160008152602001600081525090565b80356001600160a01b038116811461085357600080fd5b60006020828403121561204d578081fd5b6110918383612025565b60008060408385031215612069578081fd5b6120738484612025565b91506120828460208501612025565b90509250929050565b60008060006060848603121561209f578081fd5b83356120aa81612ab9565b925060208401356120ba81612ab9565b929592945050506040919091013590565b600080604083850312156120dd578182fd5b6120e78484612025565b946020939093013593505050565b600080600080600060a0868803121561210c578081fd5b853561211781612ab9565b97602087013597506040870135966060810135965060800135945092505050565b600060208284031215612149578081fd5b81518015158114611091578182fd5b600060208284031215612169578081fd5b5035919050565b60008060408385031215612182578182fd5b82359150602083013561219481612ab9565b809150509250929050565b600080604083850312156121b1578182fd5b50508035926020909101359150565b6000602082840312156121d1578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b8181101561224557858101830151858201604001528201612229565b818111156122565783604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601a908201527f4d4f4d413a204d494e54455220726f6c65207265717569726564000000000000604082015260600190565b60208082526039908201527f45524332305072657365744d696e7465725061757365723a206d75737420686160408201527f76652070617573657220726f6c6520746f20756e706175736500000000000000606082015260800190565b6020808252601b908201527f4d4f4d413a20466f726365206c6f636b2074696d6520656e6465640000000000604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526019908201527f4d4f4d413a204e6f7420696e2076657374696e67206c69737400000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526023908201527f4d4f4d413a20416d6f756e74206d75737420626520677265617465722074686160408201526206e20360ec1b606082015260800190565b60208082526019908201527f4d4f4d413a20496e76616c69642062656e656669636961727900000000000000604082015260600190565b60208082526019908201527f4d4f4d413a2041444d494e20726f6c6520726571756972656400000000000000604082015260600190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252602e908201527f4d4f4d4120424c41434b4c4953543a2043616e6e6f74207472616e736665722060408201526d6c6f636b65642062616c616e636560901b606082015260800190565b6020808252601e908201527f4d4f4d413a204552433230206e6f7420656e6f7567682062616c616e63650000604082015260600190565b60208082526019908201527f4d4f4d413a204d617820737570706c7920657863656564656400000000000000604082015260600190565b6020808252601b908201527f4d4f4d413a207472616e73666572204552433230206661696c65640000000000604082015260600190565b6020808252601590820152744d4f4d413a20496e76616c69642076657374696e6760581b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601290820152714d4f4d413a205a65726f206164647265737360701b604082015260600190565b6020808252601a908201527f4d4f4d413a204c4f434b455220726f6c65207265717569726564000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526037908201527f45524332305072657365744d696e7465725061757365723a206d75737420686160408201527f76652070617573657220726f6c6520746f207061757365000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601690820152754d4f4d413a204e6f7468696e6720746f20636c61696d60501b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686040820152691a5b19481c185d5cd95960b21b606082015260800190565b815115158152602080830151908201526040918201519181019190915260600190565b600060e0820190508251151582526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015292915050565b60ff91909116815260200190565b6001600160a01b0381168114610c2d57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200282652f8f7b8e9c6d926c7b066428d40b319fa5993dd81dc24d7a46766f8f7f64736f6c634300060c0033

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

000000000000000000000000a3dd79b9109e62cc3ecdabdd7f40f23a57d2d61c

-----Decoded View---------------
Arg [0] : multiSigAccount (address): 0xA3dd79b9109E62Cc3eCdABDD7F40F23A57D2d61C

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a3dd79b9109e62cc3ecdabdd7f40f23a57d2d61c


Deployed Bytecode Sourcemap

51659:7344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58984:8;;;51659:7344;;;;33001:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35107:169;;;;;;;;;;-1:-1:-1;35107:169:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34076:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;52483:51::-;;;;;;;;;;;;;:::i;35750:321::-;;;;;;;;;;-1:-1:-1;35750:321:0;;;;;:::i;:::-;;:::i;55213:684::-;;;;;;;;;;-1:-1:-1;55213:684:0;;;;;:::i;:::-;;:::i;:::-;;22207:114;;;;;;;;;;-1:-1:-1;22207:114:0;;;;;:::i;:::-;;:::i;22583:227::-;;;;;;;;;;-1:-1:-1;22583:227:0;;;;;:::i;:::-;;:::i;52333:69::-;;;;;;;;;;;;;:::i;33928:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;52409:67::-;;;;;;;;;;;;;:::i;23792:209::-;;;;;;;;;;-1:-1:-1;23792:209:0;;;;;:::i;:::-;;:::i;52596:62::-;;;;;;;;;;;;;:::i;36480:218::-;;;;;;;;;;-1:-1:-1;36480:218:0;;;;;:::i;:::-;;:::i;52541:48::-;;;;;;;;;;;;;:::i;48439:178::-;;;;;;;;;;;;;:::i;53682:201::-;;;;;;;;;;-1:-1:-1;53682:201:0;;;;;:::i;:::-;;:::i;42294:91::-;;;;;;;;;;-1:-1:-1;42294:91:0;;;;;:::i;:::-;;:::i;54147:244::-;;;;;;;;;;-1:-1:-1;54147:244:0;;;;;:::i;:::-;;:::i;54010:129::-;;;;;;;;;;-1:-1:-1;54010:129:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54399:113::-;;;;;;;;;;-1:-1:-1;54399:113:0;;;;;:::i;:::-;;:::i;44076:78::-;;;;;;;;;;;;;:::i;55041:164::-;;;;;;;;;;-1:-1:-1;55041:164:0;;;;;:::i;:::-;;:::i;57520:586::-;;;;;;;;;;;;;:::i;34239:119::-;;;;;;;;;;-1:-1:-1;34239:119:0;;;;;:::i;:::-;;:::i;42704:295::-;;;;;;;;;;-1:-1:-1;42704:295:0;;;;;:::i;:::-;;:::i;48049:172::-;;;;;;;;;;;;;:::i;56309:131::-;;;;;;;;;;-1:-1:-1;56309:131:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21880:138::-;;;;;;;;;;-1:-1:-1;21880:138:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20841:139::-;;;;;;;;;;-1:-1:-1;20841:139:0;;;;;:::i;:::-;;:::i;33203:87::-;;;;;;;;;;;;;:::i;58591:347::-;;;;;;;;;;-1:-1:-1;58591:347:0;;;;;:::i;:::-;;:::i;19586:49::-;;;;;;;;;;;;;:::i;37201:269::-;;;;;;;;;;-1:-1:-1;37201:269:0;;;;;:::i;:::-;;:::i;34571:175::-;;;;;;;;;;-1:-1:-1;34571:175:0;;;;;:::i;:::-;;:::i;57373:139::-;;;;;;;;;;-1:-1:-1;57373:139:0;;;;;:::i;:::-;;:::i;21154:127::-;;;;;;;;;;-1:-1:-1;21154:127:0;;;;;:::i;:::-;;:::i;46865:62::-;;;;;;;;;;;;;:::i;23055:230::-;;;;;;;;;;-1:-1:-1;23055:230:0;;;;;:::i;:::-;;:::i;55905:396::-;;;;;;;;;;-1:-1:-1;55905:396:0;;;;;:::i;:::-;;:::i;34809:151::-;;;;;;;;;;-1:-1:-1;34809:151:0;;;;;:::i;:::-;;:::i;46934:62::-;;;;;;;;;;;;;:::i;52264:::-;;;;;;;;;;;;;:::i;53891:111::-;;;;;;;;;;-1:-1:-1;53891:111:0;;;;;:::i;:::-;;:::i;33001:83::-;33071:5;33064:12;;;;;;;;-1:-1:-1;;33064:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33038:13;;33064:12;;33071:5;;33064:12;;33071:5;33064:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33001:83;:::o;35107:169::-;35190:4;35207:39;35216:12;:10;:12::i;:::-;35230:7;35239:6;35207:8;:39::i;:::-;-1:-1:-1;35264:4:0;35107:169;;;;;:::o;34076:100::-;34156:12;;34076:100;:::o;52483:51::-;52528:6;52483:51;:::o;35750:321::-;35856:4;35873:36;35883:6;35891:9;35902:6;35873:9;:36::i;:::-;35920:121;35929:6;35937:12;:10;:12::i;:::-;35951:89;35989:6;35951:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35951:19:0;;;;;;:11;:19;;;;;;35971:12;:10;:12::i;:::-;-1:-1:-1;;;;;35951:33:0;;;;;;;;;;;;-1:-1:-1;35951:33:0;;;:89;:37;:89::i;:::-;35920:8;:121::i;:::-;-1:-1:-1;36059:4:0;35750:321;;;;;:::o;55213:684::-;52707:41;19631:4;52735:12;:10;:12::i;52707:41::-;52699:79;;;;-1:-1:-1;;;52699:79:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;55439:25:0;::::1;55431:56;;;;-1:-1:-1::0;;;55431:56:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;55507:25:0;::::1;;::::0;;;:12:::1;:25;::::0;;;;:34;::::1;;55506:35;55498:69;;;;-1:-1:-1::0;;;55498:69:0::1;;;;;;;:::i;:::-;55578:23;;:::i;:::-;-1:-1:-1::0;55617:229:0::1;::::0;;::::1;::::0;::::1;::::0;;55647:4:::1;55617:229:::0;;;::::1;::::0;;::::1;::::0;;;55695:15:::1;55617:229:::0;;;;;;-1:-1:-1;55617:229:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55857:25:0;;;::::1;::::0;;:12:::1;:25:::0;;;;;;:32;;;;-1:-1:-1;;55857:32:0::1;::::0;::::1;;;::::0;;;;;;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;55213:684::o;22207:114::-;22264:7;22291:12;;;;;;;;;;:22;;;22207:114;;;;:::o;22583:227::-;22675:6;:12;;;;;;;;;;:22;;;22667:45;;22699:12;:10;:12::i;22667:45::-;22659:105;;;;-1:-1:-1;;;22659:105:0;;;;;;;:::i;:::-;22777:25;22788:4;22794:7;22777:10;:25::i;:::-;22583:227;;:::o;52333:69::-;52374:28;52333:69;:::o;33928:83::-;33994:9;;;;33928:83;:::o;52409:67::-;52446:30;52409:67;:::o;23792:209::-;23890:12;:10;:12::i;:::-;-1:-1:-1;;;;;23879:23:0;:7;-1:-1:-1;;;;;23879:23:0;;23871:83;;;;-1:-1:-1;;;23871:83:0;;;;;;;:::i;:::-;23967:26;23979:4;23985:7;23967:11;:26::i;52596:62::-;52651:7;52596:62;:::o;36480:218::-;36568:4;36585:83;36594:12;:10;:12::i;:::-;36608:7;36617:50;36656:10;36617:11;:25;36629:12;:10;:12::i;:::-;-1:-1:-1;;;;;36617:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;36617:25:0;;;:34;;;;;;;;;;;:38;:50::i;52541:48::-;52587:2;52541:48;:::o;48439:178::-;48492:34;46972:24;48513:12;:10;:12::i;48492:34::-;48484:104;;;;-1:-1:-1;;;48484:104:0;;;;;;;:::i;:::-;48599:10;:8;:10::i;:::-;48439:178::o;53682:201::-;52847:34;46903:24;52868:12;:10;:12::i;52847:34::-;52839:73;;;;-1:-1:-1;;;52839:73:0;;;;;;;:::i;:::-;52446:30;53778:25:::1;53796:6:::0;53778:13:::1;:11;:13::i;:::-;:17:::0;::::1;:25::i;:::-;:39;;53770:77;;;;-1:-1:-1::0;;;53770:77:0::1;;;;;;;:::i;:::-;53858:17;53864:2;53868:6;53858:5;:17::i;42294:91::-:0;42350:27;42356:12;:10;:12::i;:::-;42370:6;42350:5;:27::i;:::-;42294:91;:::o;54147:244::-;52981:34;52302:24;53002:12;:10;:12::i;52981:34::-;52973:73;;;;-1:-1:-1;;;52973:73:0;;;;;;;:::i;:::-;54242:26:::1;;54224:15;:44;54216:84;;;;-1:-1:-1::0;;;54216:84:0::1;;;;;;;:::i;:::-;54330:53;::::0;;::::1;::::0;::::1;::::0;;54344:4:::1;54330:53:::0;;54350:15:::1;54330:53;::::0;::::1;::::0;;;;54367:15:::1;54377:4:::0;54367:9:::1;:15::i;:::-;54330:53:::0;;-1:-1:-1;;;;;54311:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;;;;;:72;;;;-1:-1:-1;;54311:72:0::1;::::0;::::1;;;::::0;;;;::::1;::::0;-1:-1:-1;54311:72:0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;54147:244::o;54010:129::-;54075:20;;:::i;:::-;-1:-1:-1;;;;;;54115:16:0;;;;;:10;:16;;;;;;;;;54108:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54010:129::o;54399:113::-;52981:34;52302:24;53002:12;:10;:12::i;52981:34::-;52973:73;;;;-1:-1:-1;;;52973:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54473:16:0::1;54499:5;54473:16:::0;;;:10:::1;:16;::::0;;;;:31;;-1:-1:-1;;54473:31:0::1;::::0;;54399:113::o;44076:78::-;44139:7;;;;;;;;44076:78::o;55041:164::-;55105:7;55132:65;55171:25;55191:4;55171:19;:25::i;:::-;-1:-1:-1;;;;;55132:16:0;;;;;;:10;:16;;;;;:34;;;;:38;:65::i;57520:586::-;57580:7;50548:1;51154:7;;:19;;51146:63;;;;-1:-1:-1;;;51146:63:0;;;;;;;:::i;:::-;50548:1;51287:7;:18;57608:12:::1;:26;57621:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;57608:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;57608:26:0;:35;::::1;;57600:73;;;;-1:-1:-1::0;;;57600:73:0::1;;;;;;;:::i;:::-;57684:23;57710:40;57737:12;:10;:12::i;:::-;57710:26;:40::i;:::-;57684:66;;57787:1;57769:15;:19;57761:54;;;;-1:-1:-1::0;;;57761:54:0::1;;;;;;;:::i;:::-;52446:30:::0;57834:34:::1;57852:15:::0;57834:13:::1;:11;:13::i;:34::-;:48;;57826:86;;;;-1:-1:-1::0;;;57826:86:0::1;;;;;;;:::i;:::-;57966:85;58025:15;57966:12;:26;57979:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;57966:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;57966:26:0;:40:::1;;::::0;;:44:::1;:85::i;:::-;57923:12;:26;57936:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;57923:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;57923:26:0;:40:::1;;:128:::0;58062:36:::1;58068:12;:10;:12::i;:::-;58082:15;58062:5;:36::i;:::-;-1:-1:-1::0;50504:1:0;51466:7;:22;57520:586;:::o;34239:119::-;-1:-1:-1;;;;;34332:18:0;34305:7;34332:18;;;:9;:18;;;;;;;34239:119::o;42704:295::-;42781:26;42810:84;42847:6;42810:84;;;;;;;;;;;;;;;;;:32;42820:7;42829:12;:10;:12::i;42810:32::-;:36;:84;:36;:84::i;:::-;42781:113;;42907:51;42916:7;42925:12;:10;:12::i;:::-;42939:18;42907:8;:51::i;:::-;42969:22;42975:7;42984:6;42969:5;:22::i;:::-;42704:295;;;:::o;48049:172::-;48100:34;46972:24;48121:12;:10;:12::i;48100:34::-;48092:102;;;;-1:-1:-1;;;48092:102:0;;;;;;;:::i;:::-;48205:8;:6;:8::i;56309:131::-;56376:18;;:::i;:::-;-1:-1:-1;;;;;;56414:18:0;;;;;:12;:18;;;;;;;;;56407:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56309:131::o;21880:138::-;21953:7;21980:12;;;;;;;;;;:30;;22004:5;21980:23;:30::i;:::-;21973:37;21880:138;-1:-1:-1;;;21880:138:0:o;20841:139::-;20910:4;20934:12;;;;;;;;;;:38;;20964:7;20934:29;:38::i;33203:87::-;33275:7;33268:14;;;;;;;;-1:-1:-1;;33268:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33242:13;;33268:14;;33275:7;;33268:14;;33275:7;33268:14;;;;;;;;;;;;;;;;;;;;;;;;58591:347;52707:41;19631:4;52735:12;:10;:12::i;52707:41::-;52699:79;;;;-1:-1:-1;;;52699:79:0;;;;;;;:::i;:::-;58692:1:::1;58683:6;:10;58675:58;;;;-1:-1:-1::0;;;58675:58:0::1;;;;;;;:::i;:::-;58752:38;::::0;-1:-1:-1;;;58752:38:0;;58794:6;;-1:-1:-1;;;;;58752:23:0;::::1;::::0;::::1;::::0;:38:::1;::::0;58784:4:::1;::::0;58752:38:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;58744:91;;;;-1:-1:-1::0;;;58744:91:0::1;;;;;;;:::i;:::-;58861:5;-1:-1:-1::0;;;;;58854:22:0::1;;58877:12;:10;:12::i;:::-;58891:6;58854:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58846:84;;;;-1:-1:-1::0;;;58846:84:0::1;;;;;;;:::i;19586:49::-:0;19631:4;19586:49;:::o;37201:269::-;37294:4;37311:129;37320:12;:10;:12::i;:::-;37334:7;37343:96;37382:15;37343:96;;;;;;;;;;;;;;;;;:11;:25;37355:12;:10;:12::i;:::-;-1:-1:-1;;;;;37343:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37343:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;34571:175::-;34657:4;34674:42;34684:12;:10;:12::i;:::-;34698:9;34709:6;34674:9;:42::i;57373:139::-;57445:7;57472:32;57499:4;57472:26;:32::i;21154:127::-;21217:7;21244:12;;;;;;;;;;:29;;:27;:29::i;46865:62::-;46903:24;46865:62;:::o;23055:230::-;23148:6;:12;;;;;;;;;;:22;;;23140:45;;23172:12;:10;:12::i;23140:45::-;23132:106;;;;-1:-1:-1;;;23132:106:0;;;;;;;:::i;55905:396::-;52707:41;19631:4;52735:12;:10;:12::i;52707:41::-;52699:79;;;;-1:-1:-1;;;52699:79:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55985:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;:27;::::1;;55977:65;;;;-1:-1:-1::0;;;55977:65:0::1;;;;;;;:::i;:::-;56053:23;56079:32;56106:4;56079:26;:32::i;:::-;56053:58:::0;-1:-1:-1;52446:30:0;56130:34:::1;56053:58:::0;56130:13:::1;:11;:13::i;:34::-;:48;;56122:86;;;;-1:-1:-1::0;;;56122:86:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56219:18:0;::::1;56249:5;56219:18:::0;;;:12:::1;:18;::::0;;;;:35;;-1:-1:-1;;56219:35:0::1;::::0;;56265:28:::1;56232:4:::0;56277:15;56265:5:::1;:28::i;34809:151::-:0;-1:-1:-1;;;;;34925:18:0;;;34898:7;34925:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;34809:151::o;46934:62::-;46972:24;46934:62;:::o;52264:::-;52302:24;52264:62;:::o;53891:111::-;-1:-1:-1;;;;;53971:16:0;53947:4;53971:16;;;:10;:16;;;;;:23;;;;53891:111::o;26353:181::-;26411:7;26443:5;;;26467:6;;;;26459:46;;;;-1:-1:-1;;;26459:46:0;;;;;;;:::i;7838:143::-;7908:4;7932:41;7937:3;-1:-1:-1;;;;;7957:14:0;;7932:4;:41::i;48625:183::-;48756:44;48783:4;48789:2;48793:6;48756:26;:44::i;26817:136::-;26875:7;26902:43;26906:1;26909;26902:43;;;;;;;;;;;;;;;;;:3;:43::i;8157:149::-;8230:4;8254:44;8262:3;-1:-1:-1;;;;;8282:14:0;;8254:7;:44::i;45832:238::-;45941:44;45968:4;45974:2;45978:6;45941:26;:44::i;:::-;46007:8;:6;:8::i;:::-;46006:9;45998:64;;;;-1:-1:-1;;;45998:64:0;;;;;;;:::i;28654:132::-;28712:7;28739:39;28743:1;28746;28739:39;;;;;;;;;;;;;;;;;:3;:39::i;27707:471::-;27765:7;28010:6;28006:47;;-1:-1:-1;28040:1:0;28033:8;;28006:47;28077:5;;;28081:1;28077;:5;:1;28101:5;;;;;:10;28093:56;;;;-1:-1:-1;;;28093:56:0;;;;;;;:::i;17529:106::-;17617:10;17529:106;:::o;40346:346::-;-1:-1:-1;;;;;40448:19:0;;40440:68;;;;-1:-1:-1;;;40440:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40527:21:0;;40519:68;;;;-1:-1:-1;;;40519:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40600:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;40652:32;;;;;40630:6;;40652:32;:::i;:::-;;;;;;;;40346:346;;;:::o;37960:539::-;-1:-1:-1;;;;;38066:20:0;;38058:70;;;;-1:-1:-1;;;38058:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38147:23:0;;38139:71;;;;-1:-1:-1;;;38139:71:0;;;;;;;:::i;:::-;38223:47;38244:6;38252:9;38263:6;38223:20;:47::i;:::-;38303:71;38325:6;38303:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38303:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;38283:17:0;;;;;;;:9;:17;;;;;;:91;;;;38408:20;;;;;;;:32;;38433:6;38408:24;:32::i;:::-;-1:-1:-1;;;;;38385:20:0;;;;;;;:9;:20;;;;;;;:55;;;;38456:35;;;;;;;;;;38484:6;;38456:35;:::i;27256:192::-;27342:7;27378:12;27370:6;;;;27362:29;;;;-1:-1:-1;;;27362:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;27414:5:0;;;27256:192::o;25035:188::-;25109:6;:12;;;;;;;;;;:33;;25134:7;25109:24;:33::i;:::-;25105:111;;;25191:12;:10;:12::i;:::-;-1:-1:-1;;;;;25164:40:0;25182:7;-1:-1:-1;;;;;25164:40:0;25176:4;25164:40;;;;;;;;;;25035:188;;:::o;25231:192::-;25306:6;:12;;;;;;;;;;:36;;25334:7;25306:27;:36::i;:::-;25302:114;;;25391:12;:10;:12::i;:::-;-1:-1:-1;;;;;25364:40:0;25382:7;-1:-1:-1;;;;;25364:40:0;25376:4;25364:40;;;;;;;;;;25231:192;;:::o;45125:120::-;44670:7;;;;;;;44662:40;;;;-1:-1:-1;;;44662:40:0;;;;;;;:::i;:::-;45184:7:::1;:15:::0;;-1:-1:-1;;45184:15:0::1;::::0;;45215:22:::1;45224:12;:10;:12::i;:::-;45215:22;;;;;;:::i;:::-;;;;;;;;45125:120::o:0;38780:378::-;-1:-1:-1;;;;;38864:21:0;;38856:65;;;;-1:-1:-1;;;38856:65:0;;;;;;;:::i;:::-;38934:49;38963:1;38967:7;38976:6;38934:20;:49::i;:::-;39011:12;;:24;;39028:6;39011:16;:24::i;:::-;38996:12;:39;-1:-1:-1;;;;;39067:18:0;;;;;;:9;:18;;;;;;:30;;39090:6;39067:22;:30::i;:::-;-1:-1:-1;;;;;39046:18:0;;;;;;:9;:18;;;;;;:51;;;;39113:37;;39046:18;;;39113:37;;;;39143:6;;39113:37;:::i;:::-;;;;;;;;38780:378;;:::o;39490:418::-;-1:-1:-1;;;;;39574:21:0;;39566:67;;;;-1:-1:-1;;;39566:67:0;;;;;;;:::i;:::-;39646:49;39667:7;39684:1;39688:6;39646:20;:49::i;:::-;39729:68;39752:6;39729:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39729:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;39708:18:0;;;;;;:9;:18;;;;;:89;39823:12;;:24;;39840:6;39823:16;:24::i;:::-;39808:12;:39;39863:37;;39889:1;;-1:-1:-1;;;;;39863:37:0;;;;;;;39893:6;;39863:37;:::i;54520:513::-;54586:23;54622:25;;:::i;:::-;-1:-1:-1;;;;;;54650:16:0;;;;;;:10;:16;;;;;;;;54622:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54650:16;54698:48;;54739:6;;54698:36;;:15;;:19;:36::i;:::-;:40;;:48::i;:::-;54763:11;;54677:69;;-1:-1:-1;54763:47:0;;;;;52587:2;54778:10;:32;54763:47;54759:234;;;54845:63;52587:2;54845:38;54860:4;:22;;;54845:10;:14;;:38;;;;:::i;:63::-;54827:81;;54759:234;;;54959:4;:22;;;54941:40;;54759:234;55003:22;;54520:513;;;:::o;56448:917::-;-1:-1:-1;;;;;56594:18:0;;56548:23;56594:18;;;:12;:18;;;;;:27;;;56589:42;;-1:-1:-1;56630:1:0;56623:8;;56589:42;56642:23;;:::i;:::-;-1:-1:-1;;;;;;56668:18:0;;;;;;:12;:18;;;;;;;;56642:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56668:18;56719:51;;56738:31;;56762:6;56738:23;:31::i;:::-;56719:14;;;;;:18;:51::i;:::-;56697:73;;56803:11;56785:15;:29;56781:43;;;56823:1;56816:8;;;;;;56781:43;56922:17;;;;56835:20;;56871:69;;:46;56910:6;56871:46;56872:15;56892:11;56872:19;:32::i;56871:69::-;56835:105;;56953:22;57006:4;:23;;;56990:12;:39;56986:208;;-1:-1:-1;57063:11:0;;;;56986:208;;;57124:58;57158:4;:23;;;57124:29;57140:12;57124:4;:11;;;:15;;:29;;;;:::i;:58::-;57107:75;;56986:208;57222:1;57204:19;;57255:4;:18;;;57238:14;:35;57234:124;;;57327:18;;;;57308:38;;:14;;:18;:38::i;:::-;57290:56;;57234:124;56448:917;;;;;;;:::o;44866:118::-;44394:7;;;;;;;44393:8;44385:37;;;;-1:-1:-1;;;44385:37:0;;;;;;;:::i;:::-;44926:7:::1;:14:::0;;-1:-1:-1;;44926:14:0::1;;;::::0;;44956:20:::1;44963:12;:10;:12::i;9097:149::-:0;9171:7;9214:22;9218:3;9230:5;9214:3;:22::i;8392:158::-;8472:4;8496:46;8506:3;-1:-1:-1;;;;;8526:14:0;;8496:9;:46::i;8636:117::-;8699:7;8726:19;8734:3;8726:7;:19::i;4492:414::-;4555:4;4577:21;4587:3;4592:5;4577:9;:21::i;:::-;4572:327;;-1:-1:-1;4615:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;4798:18;;4776:19;;;:12;;;:19;;;;;;:40;;;;4831:11;;4572:327;-1:-1:-1;4882:5:0;4875:12;;5082:1544;5148:4;5287:19;;;:12;;;:19;;;;;;5323:15;;5319:1300;;5758:18;;-1:-1:-1;;5709:14:0;;;;5758:22;;;;5685:21;;5758:3;;:22;;6045;;;;;;;;;;;;;;6025:42;;6191:9;6162:3;:11;;6174:13;6162:26;;;;;;;;;;;;;;;;;;;:38;;;;6268:23;;;6310:1;6268:12;;;:23;;;;;;6294:17;;;6268:43;;6420:17;;6268:3;;6420:17;;;;;;;;;;;;;;;;;;;;;;6515:3;:12;;:19;6528:5;6515:19;;;;;;;;;;;6508:26;;;6558:4;6551:11;;;;;;;;5319:1300;6602:5;6595:12;;;;;29282:278;29368:7;29403:12;29396:5;29388:28;;;;-1:-1:-1;;;29388:28:0;;;;;;;;:::i;:::-;;29427:9;29443:1;29439;:5;;;;;;;29282:278;-1:-1:-1;;;;;29282:278:0:o;58114:469::-;58249:44;58276:4;58282:2;58286:6;58249:26;:44::i;:::-;-1:-1:-1;;;;;58308:16:0;;;;;;:10;:16;;;;;:23;;;58304:272;;;58348:21;58372:25;58392:4;58372:19;:25::i;:::-;58348:49;;58469:13;58438:27;58458:6;58438:15;58448:4;58438:9;:15::i;:::-;:19;;:27::i;:::-;:44;;58412:152;;;;-1:-1:-1;;;58412:152:0;;;;;;;:::i;:::-;58304:272;58114:469;;;:::o;7380:204::-;7475:18;;7447:7;;7475:26;-1:-1:-1;7467:73:0;;;;-1:-1:-1;;;7467:73:0;;;;;;;:::i;:::-;7558:3;:11;;7570:5;7558:18;;;;;;;;;;;;;;;;7551:25;;7380:204;;;;:::o;6712:129::-;6785:4;6809:19;;;:12;;;;;:19;;;;;;:24;;;6712:129::o;6927:109::-;7010:18;;6927:109::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;36492:54;;37545:35;;37535:2;;37594:1;;37584:12;692:241;;796:2;784:9;775:7;771:23;767:32;764:2;;;-1:-1;;802:12;764:2;864:53;909:7;885:22;864:53;:::i;940:366::-;;;1061:2;1049:9;1040:7;1036:23;1032:32;1029:2;;;-1:-1;;1067:12;1029:2;1129:53;1174:7;1150:22;1129:53;:::i;:::-;1119:63;;1237:53;1282:7;1219:2;1262:9;1258:22;1237:53;:::i;:::-;1227:63;;1023:283;;;;;:::o;1313:491::-;;;;1451:2;1439:9;1430:7;1426:23;1422:32;1419:2;;;-1:-1;;1457:12;1419:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1509:63;-1:-1;1609:2;1648:22;;72:20;97:33;72:20;97:33;:::i;:::-;1413:391;;1617:63;;-1:-1;;;1717:2;1756:22;;;;481:20;;1413:391::o;1811:366::-;;;1932:2;1920:9;1911:7;1907:23;1903:32;1900:2;;;-1:-1;;1938:12;1900:2;2000:53;2045:7;2021:22;2000:53;:::i;:::-;1990:63;2090:2;2129:22;;;;481:20;;-1:-1;;;1894:283::o;2184:743::-;;;;;;2356:3;2344:9;2335:7;2331:23;2327:33;2324:2;;;-1:-1;;2363:12;2324:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2415:63;2515:2;2554:22;;481:20;;-1:-1;2623:2;2662:22;;481:20;;2731:2;2770:22;;481:20;;-1:-1;2839:3;2879:22;481:20;;-1:-1;2318:609;-1:-1;;;2318:609::o;2934:257::-;;3046:2;3034:9;3025:7;3021:23;3017:32;3014:2;;;-1:-1;;3052:12;3014:2;223:6;217:13;37691:5;36325:13;36318:21;37669:5;37666:32;37656:2;;-1:-1;;37702:12;3198:241;;3302:2;3290:9;3281:7;3277:23;3273:32;3270:2;;;-1:-1;;3308:12;3270:2;-1:-1;344:20;;3264:175;-1:-1;3264:175::o;3446:366::-;;;3567:2;3555:9;3546:7;3542:23;3538:32;3535:2;;;-1:-1;;3573:12;3535:2;357:6;344:20;3625:63;;3725:2;3768:9;3764:22;72:20;97:33;124:5;97:33;:::i;:::-;3733:63;;;;3529:283;;;;;:::o;3819:366::-;;;3940:2;3928:9;3919:7;3915:23;3911:32;3908:2;;;-1:-1;;3946:12;3908:2;-1:-1;;344:20;;;4098:2;4137:22;;;481:20;;-1:-1;3902:283::o;4440:263::-;;4555:2;4543:9;4534:7;4530:23;4526:32;4523:2;;;-1:-1;;4561:12;4523:2;-1:-1;629:13;;4517:186;-1:-1;4517:186::o;19582:222::-;-1:-1;;;;;36492:54;;;;4930:37;;19709:2;19694:18;;19680:124::o;20056:349::-;-1:-1;;;;;36492:54;;;;4789:58;;20391:2;20376:18;;5262:37;20219:2;20204:18;;20190:215::o;20412:210::-;36325:13;;36318:21;5034:34;;20533:2;20518:18;;20504:118::o;20629:222::-;5262:37;;;20756:2;20741:18;;20727:124::o;20858:310::-;;21005:2;;21026:17;21019:47;5456:5;35948:12;36105:6;21005:2;20994:9;20990:18;36093:19;-1:-1;37177:101;37191:6;37188:1;37185:13;37177:101;;;37258:11;;;;;37252:18;37239:11;;;36133:14;37239:11;37232:39;37206:10;;37177:101;;;37293:6;37290:1;37287:13;37284:2;;;-1:-1;36133:14;37349:6;20994:9;37340:16;;37333:27;37284:2;-1:-1;37465:7;37449:14;-1:-1;;37445:28;5614:39;;;;36133:14;5614:39;;20976:192;-1:-1;;;20976:192::o;21175:416::-;21375:2;21389:47;;;5890:2;21360:18;;;36093:19;5926:34;36133:14;;;5906:55;-1:-1;;;5981:12;;;5974:26;6019:12;;;21346:245::o;21598:416::-;21798:2;21812:47;;;6270:2;21783:18;;;36093:19;6306:34;36133:14;;;6286:55;-1:-1;;;6361:12;;;6354:27;6400:12;;;21769:245::o;22021:416::-;22221:2;22235:47;;;6651:2;22206:18;;;36093:19;6687:34;36133:14;;;6667:55;-1:-1;;;6742:12;;;6735:39;6793:12;;;22192:245::o;22444:416::-;22644:2;22658:47;;;7044:2;22629:18;;;36093:19;-1:-1;;;36133:14;;;7060:43;7122:12;;;22615:245::o;22867:416::-;23067:2;23081:47;;;7373:2;23052:18;;;36093:19;7409:28;36133:14;;;7389:49;7457:12;;;23038:245::o;23290:416::-;23490:2;23504:47;;;7708:2;23475:18;;;36093:19;7744:34;36133:14;;;7724:55;7813:27;7799:12;;;7792:49;7860:12;;;23461:245::o;23713:416::-;23913:2;23927:47;;;8111:2;23898:18;;;36093:19;8147:29;36133:14;;;8127:50;8196:12;;;23884:245::o;24136:416::-;24336:2;24350:47;;;8447:2;24321:18;;;36093:19;8483:34;36133:14;;;8463:55;-1:-1;;;8538:12;;;8531:26;8576:12;;;24307:245::o;24559:416::-;24759:2;24773:47;;;8827:2;24744:18;;;36093:19;8863:27;36133:14;;;8843:48;8910:12;;;24730:245::o;24982:416::-;25182:2;25196:47;;;9161:2;25167:18;;;36093:19;9197:29;36133:14;;;9177:50;9246:12;;;25153:245::o;25405:416::-;25605:2;25619:47;;;9497:2;25590:18;;;36093:19;9533:34;36133:14;;;9513:55;-1:-1;;;9588:12;;;9581:27;9627:12;;;25576:245::o;25828:416::-;26028:2;26042:47;;;9878:2;26013:18;;;36093:19;9914:27;36133:14;;;9894:48;9961:12;;;25999:245::o;26251:416::-;26451:2;26465:47;;;10212:2;26436:18;;;36093:19;10248:27;36133:14;;;10228:48;10295:12;;;26422:245::o;26674:416::-;26874:2;26888:47;;;10546:2;26859:18;;;36093:19;10582:34;36133:14;;;10562:55;-1:-1;;;10637:12;;;10630:40;10689:12;;;26845:245::o;27097:416::-;27297:2;27311:47;;;10940:2;27282:18;;;36093:19;-1:-1;;;36133:14;;;10956:39;11014:12;;;27268:245::o;27520:416::-;27720:2;27734:47;;;11265:2;27705:18;;;36093:19;11301:34;36133:14;;;11281:55;-1:-1;;;11356:12;;;11349:38;11406:12;;;27691:245::o;27943:416::-;28143:2;28157:47;;;11657:2;28128:18;;;36093:19;11693:32;36133:14;;;11673:53;11745:12;;;28114:245::o;28366:416::-;28566:2;28580:47;;;11996:2;28551:18;;;36093:19;12032:27;36133:14;;;12012:48;12079:12;;;28537:245::o;28789:416::-;28989:2;29003:47;;;12330:2;28974:18;;;36093:19;12366:29;36133:14;;;12346:50;12415:12;;;28960:245::o;29212:416::-;29412:2;29426:47;;;12666:2;29397:18;;;36093:19;-1:-1;;;36133:14;;;12682:44;12745:12;;;29383:245::o;29635:416::-;29835:2;29849:47;;;12996:2;29820:18;;;36093:19;13032:34;36133:14;;;13012:55;-1:-1;;;13087:12;;;13080:25;13124:12;;;29806:245::o;30058:416::-;30258:2;30272:47;;;13375:2;30243:18;;;36093:19;13411:34;36133:14;;;13391:55;-1:-1;;;13466:12;;;13459:25;13503:12;;;30229:245::o;30481:416::-;30681:2;30695:47;;;13754:2;30666:18;;;36093:19;13790:34;36133:14;;;13770:55;-1:-1;;;13845:12;;;13838:29;13886:12;;;30652:245::o;30904:416::-;31104:2;31118:47;;;14137:2;31089:18;;;36093:19;-1:-1;;;36133:14;;;14153:41;14213:12;;;31075:245::o;31327:416::-;31527:2;31541:47;;;14464:2;31512:18;;;36093:19;14500:28;36133:14;;;14480:49;14548:12;;;31498:245::o;31750:416::-;31950:2;31964:47;;;14799:2;31935:18;;;36093:19;14835:34;36133:14;;;14815:55;-1:-1;;;14890:12;;;14883:28;14930:12;;;31921:245::o;32173:416::-;32373:2;32387:47;;;15181:2;32358:18;;;36093:19;15217:34;36133:14;;;15197:55;15286:25;15272:12;;;15265:47;15331:12;;;32344:245::o;32596:416::-;32796:2;32810:47;;;15582:2;32781:18;;;36093:19;15618:33;36133:14;;;15598:54;15671:12;;;32767:245::o;33019:416::-;33219:2;33233:47;;;15922:2;33204:18;;;36093:19;-1:-1;;;36133:14;;;15938:45;16002:12;;;33190:245::o;33442:416::-;33642:2;33656:47;;;16253:2;33627:18;;;36093:19;16289:34;36133:14;;;16269:55;-1:-1;;;16344:12;;;16337:39;16395:12;;;33613:245::o;33865:416::-;34065:2;34079:47;;;16646:2;34050:18;;;36093:19;16682:33;36133:14;;;16662:54;16735:12;;;34036:245::o;34288:416::-;34488:2;34502:47;;;16986:2;34473:18;;;36093:19;17022:34;36133:14;;;17002:55;-1:-1;;;17077:12;;;17070:34;17123:12;;;34459:245::o;34711:346::-;17433:23;;36325:13;36318:21;5034:34;;17604:4;17593:16;;;17587:23;17664:14;;;5262:37;17771:4;17760:16;;;17754:23;17831:14;;;5262:37;;;;34900:2;34885:18;;34871:186::o;35064:339::-;;35249:3;35238:9;35234:19;35226:27;;18158:16;18152:23;36325:13;36318:21;5041:3;5034:34;18319:4;18312:5;18308:16;18302:23;18319:4;18383:3;18379:14;5262:37;18478:4;18471:5;18467:16;18461:23;18478:4;18542:3;18538:14;5262:37;18641:4;18634:5;18630:16;18624:23;18641:4;18705:3;18701:14;5262:37;18805:4;18798:5;18794:16;18788:23;18805:4;18869:3;18865:14;5262:37;18973:4;18966:5;18962:16;18956:23;18973:4;19037:3;19033:14;5262:37;19135:4;19128:5;19124:16;19118:23;19135:4;19199:3;19195:14;5262:37;35220:183;;;;:::o;35639:214::-;36708:4;36697:16;;;;19535:35;;35762:2;35747:18;;35733:120::o;37486:117::-;-1:-1;;;;;36492:54;;37545:35;;37535:2;;37594:1;;37584:12

Swarm Source

ipfs://0282652f8f7b8e9c6d926c7b066428d40b319fa5993dd81dc24d7a46766f8f7f
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.