ETH Price: $3,928.51 (+0.77%)

Token

TIMERS (IPM)
 

Overview

Max Total Supply

3,347,380.96415138524456495 IPM

Holders

381 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
174.465413156723463415 IPM

Value
$0.00
0x378730f7caf68780d1ed8c14cd389adb25c35759
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The TIMERS token is a representation of a human's intrinsic time value. The abbreviation IPM stands for Income/Per/Minute.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IPMToken

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

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

// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

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

// SPDX-License-Identifier: MIT

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/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

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/math/SafeMath.sol

// SPDX-License-Identifier: MIT

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

// SPDX-License-Identifier: MIT

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 is 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

// SPDX-License-Identifier: MIT

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

// SPDX-License-Identifier: MIT

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

// SPDX-License-Identifier: MIT

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

// SPDX-License-Identifier: MIT

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: contracts/token/interfaces/SocialProofable.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @title SocialProofable
 * @dev Used to define the social proof for a specific token.
 *      Based on the proposal by Dan Levine:
 *      https://docs.google.com/document/d/1wbsqYC6ZqZZdaz3li3UAFaXT2Yrc8G8KUDu7F3KrQ6Y/edit
 *
 * @author @Onchained
 */
interface SocialProofable {
  function getTwitter() external view returns(string memory);
  function getTwitterProof() external view returns(uint256);
  function getTelegram() external view returns(string memory);
  function getWebsite() external view returns(string memory);
  function getGithub() external view returns(string memory);
  function getGithubProof() external view returns(bytes memory);
}

// File: contracts/token/ipmtoken.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;



/**
* @title IPM Token
* @dev  ERC20 contract of IPM Token for TIMERS Network
*       Token is mintable but capped and also disables
*       minting for 1 year after crowdsale ended.
*       Tokens will be automatically transferable 5 days 
*       after crowdsale.
*
* More at https://timers.network/
*
* @author @KTimersnetwork
*/
contract IPMToken is ERC20PresetMinterPauser, SocialProofable {
    using SafeMath for uint256;

    //////////////////////////////////////
    // Base Token configuration         //
    //////////////////////////////////////
    
    // token name
    string public constant TOKEN_NAME               =   "TIMERS";
    // token symbol
    string public constant TOKEN_SYMBOL             =   "IPM";
    // real initial supply is 14.6mio. 
    // 9M are reserved for crowdsale and will be minted on demand.
    uint256 public constant TOKEN_INITIAL_SUPPLY        =   5600000  * (10 ** 18); 
    // 14.6M max supply after crowdsale
    uint256 public constant MAXIMUM_CROWDSALE_SUPPLY    =   14600000 * (10 ** 18); 
    // 50M maximum supply
    uint256 public constant SUPPLY_CAP                  =   50000000 * (10 ** 18); 

    // duration for the minting deactivation after crowdsale
    uint256 private constant mintLockTimeframe          =   365 days;
    // date when token becomes mintable again
    uint256 private tokenMintableDate                   =   now + mintLockTimeframe;
    // duration for the cooldown until tokens are transferable
    uint256 private constant tokenActivationTimeframe   =   5 days;
    // unpause date
    uint256 private tokenActivationDate                 =   now + tokenActivationTimeframe; 
     // switch if crowdsale has ended
    bool private crowdSaleFinished                      =   false;

    //////////////////////////////////////
    // Data for social proof            //
    //////////////////////////////////////
    string public constant socialTwitter = "TIMERSnetwork";
    string public constant socialTelegram = "TIMERSipm";
    string public constant socialWebsite = "timers.network";
    string public constant socialGithub = "timersnetwork";
    uint256 public socialTwitterProof;
    bytes public socialGithubProof;
    
    /**
     * @dev Constructor of IPM Token contract. Mints initial supply
     *      and sets access roles + Token Data via inherited class.
     */
    constructor() ERC20PresetMinterPauser(TOKEN_NAME,TOKEN_SYMBOL) public {
        // mint initial supply
        _mint(msg.sender, TOKEN_INITIAL_SUPPLY);

    }

    ///////////////////////////////////////////
    // Overrides                             //
    ///////////////////////////////////////////
    function mint(address to, uint256 amount) public virtual override {
        require(crowdSaleFinished == false || (crowdSaleFinished == true && now > tokenMintableDate), "Error: minting is currently locked");
        if(crowdSaleFinished == false) {
            require(totalSupply().add(amount) <= MAXIMUM_CROWDSALE_SUPPLY, "CrowdSale: cap exceeded");
        }
        super.mint(to,amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from,to,amount);
        // check if token is active already or sender is admin / minter
        require(tokenActive() || from == address(0), "Error: Token is not active yet");

        // minting
        if (from == address(0)) { 
            // Prevent minting of tokens beyond max supply
            require(totalSupply().add(amount) <= SUPPLY_CAP, "Max cap exceeded");
        }
        
    }

    /**
     * @dev Checks whether the token is already active 
     *      (crowdsale finsihed and cooldown date reached)
     */
    function tokenActive() public view returns(bool) {
        // admin can always send
        if(hasRole(DEFAULT_ADMIN_ROLE,msg.sender)) { return true; }

        if(crowdSaleFinished == true && now > tokenActivationDate) { return true; }

        return false;


    }
    /**
     * @dev Resets/Activates CrowdSale and deactivates token again
     *
     * Requirements:
     *
     * - the caller must have the `DEFAULT_ADMIN_ROLE`.
     */
    function resetCrowdSale() external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Error: You are not allowed to use this command");
        require(crowdSaleFinished == true, "Error: CrowdSale already active");
        crowdSaleFinished   =   false;
    }

    /**
     * @dev Checks whether the token is already active 
     *      (crowdsale finsihed and cooldown date reached)
     *
     * Requirements:
     *
     * - the caller must have the `DEFAULT_ADMIN_ROLE`.
     */
    function finishCrowdSale() external {
        require(hasRole(DEFAULT_ADMIN_ROLE,msg.sender), "Error: You are not allowed to use this command");
        require(crowdSaleFinished == false, "Error: CrowdSale already finished");

        // crowdsale finished
        crowdSaleFinished   =   true;
        // define date when token unlocks and becomes active: now + 5 days
        tokenActivationDate =   now + tokenActivationTimeframe;
        // define date when minting unlocks: now + 365 days
        tokenMintableDate   =   now + mintLockTimeframe;

        emit CrowdSaleFinished(
            totalSupply().sub(TOKEN_INITIAL_SUPPLY),
            tokenMintableDate,
            tokenActivationDate
        );
    }

    function getTokenActivationDate() public view returns(uint256) {
        return tokenActivationDate;
    }

    function getTokenMintableDate() public view returns(uint256) {
        return tokenMintableDate;
    }

    ///////////////////////////////////////////
    // Events                                //
    ///////////////////////////////////////////
    event CrowdSaleFinished(
        uint256 tokenPurchased,
        uint256 mintingLockDate,
        uint256 tokenActivationDate
    );

    ///////////////////////////////////////////
    // Social proof interface implementation //
    ///////////////////////////////////////////
    /**
     * @dev Get Twitter account for social proof
     */
    function getTwitter() override external view returns(string memory) {
        return socialTwitter;
    }

    /**
     * @dev Get Telegram account for social proof
     */
    function getTelegram() override external view returns(string memory) {
        return socialTelegram;
    }

    /**
     * @dev Get GitHub account for social proof
     */
    function getGithub() override external view returns(string memory) {
        return socialGithub;
    }

    /**
     * @dev Get Website for social proof
     */
    function getWebsite() override external view returns(string memory) {
        return socialWebsite;
    }

     /**
     * @dev Set Twitter account proof
     *
     * Requirements:
     *
     * - the caller must have the `ADMIN_ROLE`.
     */
    function setTwitterProof(uint256 _twitterProof) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Error: twitter proof can only be set by admin");
        socialTwitterProof    =   _twitterProof;
    }

     /**
     * @dev Get Twitter account proof
     */
    function getTwitterProof() override external view returns(uint256) {
        return socialTwitterProof;
    }

     /**
     * @dev Set Github account proof
     *
     * Requirements:
     *
     * - the caller must have the `ADMIN_ROLE`.
     */
    function setGithubProof(bytes calldata _githubProof) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Error: github proof can only be set by admin");
        socialGithubProof =   _githubProof;
    }

     /**
     * @dev Get Github account proof
     */
    function getGithubProof() override external view returns(bytes memory) {
        return socialGithubProof;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"uint256","name":"tokenPurchased","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintingLockDate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenActivationDate","type":"uint256"}],"name":"CrowdSaleFinished","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_CROWDSALE_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":[],"name":"SUPPLY_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_SYMBOL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"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":[],"name":"finishCrowdSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getGithub","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGithubProof","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"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":[],"name":"getTelegram","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenActivationDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenMintableDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTwitter","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTwitterProof","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWebsite","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetCrowdSale","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":"bytes","name":"_githubProof","type":"bytes"}],"name":"setGithubProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_twitterProof","type":"uint256"}],"name":"setTwitterProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"socialGithub","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"socialGithubProof","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"socialTelegram","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"socialTwitter","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"socialTwitterProof","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"socialWebsite","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

6080604052426301e13380810160075562069780016008556009805460ff191690553480156200002e57600080fd5b50604080518082018252600681526554494d45525360d01b60208083019182528351808501909452600384526249504d60e81b908401528151919291839183916200007c916004916200066a565b508051620000929060059060208401906200066a565b50506006805461ff001960ff1990911660121716905550620000d16000620000c26001600160e01b036200016a16565b6001600160e01b036200016f16565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b0190206200010990620000c26001600160e01b036200016a16565b604080516a5041555345525f524f4c4560a81b8152905190819003600b0190206200014190620000c26001600160e01b036200016a16565b50620001649050336a04a1d89bb94865ec0000006001600160e01b036200018816565b6200070c565b335b90565b6200018482826001600160e01b03620002a416565b5050565b6001600160a01b038216620001e4576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001fb600083836001600160e01b036200032616565b62000217816003546200044960201b620018261790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200024c9183906200182662000449821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082815260208181526040909120620002c991839062001c75620004ad821b17901c565b156200018457620002e26001600160e01b036200016a16565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6200033e838383620004cd60201b62001e1d1760201c565b620003516001600160e01b03620004e516565b806200036457506001600160a01b038316155b620003b6576040805162461bcd60e51b815260206004820152601e60248201527f4572726f723a20546f6b656e206973206e6f7420616374697665207965740000604482015290519081900360640190fd5b6001600160a01b03831662000444576a295be96e64066972000000620003fd82620003e96001600160e01b036200053916565b6200044960201b620018261790919060201c565b111562000444576040805162461bcd60e51b815260206004820152601060248201526f13585e0818d85c08195e18d95959195960821b604482015290519081900360640190fd5b505050565b600082820183811015620004a4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000620004a4836001600160a01b0384166001600160e01b036200053f16565b620004448383836200059760201b62001f381760201c565b6000620004fc81336001600160e01b036200060016565b156200050b575060016200016c565b60095460ff161515600114801562000524575060085442115b1562000533575060016200016c565b50600090565b60035490565b60006200055683836001600160e01b036200062416565b6200058e57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620004a7565b506000620004a7565b620005af8383836200044460201b62000ee21760201c565b620005c26001600160e01b036200063c16565b15620004445760405162461bcd60e51b815260040180806020018281038252602a81526020018062002b23602a913960400191505060405180910390fd5b6000828152602081815260408220620004a491849062001b316200064a821b17901c565b60009081526001919091016020526040902054151590565b600654610100900460ff1690565b6000620004a4836001600160a01b0384166001600160e01b036200062416565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006ad57805160ff1916838001178555620006dd565b82800160010185558215620006dd579182015b82811115620006dd578251825591602001919060010190620006c0565b50620006eb929150620006ef565b5090565b6200016c91905b80821115620006eb5760008155600101620006f6565b612407806200071c6000396000f3fe608060405234801561001057600080fd5b50600436106102f15760003560e01c80635b18b3cf1161019d578063a9059cbb116100e9578063dd62ed3e116100a2578063e63ab1e91161007c578063e63ab1e9146107ee578063f0f1270b146107f6578063f175e6a9146107fe578063f68df7ab14610806576102f1565b8063dd62ed3e146107b0578063df51aa49146107de578063df9ce794146107e6576102f1565b8063a9059cbb146106bb578063be197383146106e7578063ca15c87314610757578063d539139314610774578063d547741f1461077c578063d67c1a7a146107a8576102f1565b80638a71ce561161015657806395d89b411161013057806395d89b4114610677578063a217fddf1461067f578063a26a29ed14610687578063a457c2d71461068f576102f1565b80638a71ce56146106045780639010d07c1461060c57806391d148541461064b576102f1565b80635b18b3cf146105925780635c975abb1461059a578063635f2b73146105a257806370a08231146105aa57806379cc6790146105d05780638456cb59146105fc576102f1565b80632a9053181161025c578063395093511161021557806342966c68116101ef57806342966c681461055d578063435f70761461057a578063493a8d0c14610582578063533d62d91461058a576102f1565b806339509351146104fd5780633f4ba83a1461052957806340c10f1914610531576102f1565b80632a9053181461046f5780632dd0fc9d146104775780632f2ff15d1461047f578063313ce567146104ab57806336568abe146104c957806336c20dcf146104f5576102f1565b8063141751fb116102ae578063141751fb146103fc57806318160ddd14610404578063188214001461040c57806323b872dd14610414578063248a9ca31461044a578063287f38e314610467576102f1565b806306fdde03146102f6578063095ea7b31461037357806309e09a96146103b35780630cfccc83146103d2578063124ee68f146103ec57806312912ff7146103f4575b600080fd5b6102fe61080e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610338578181015183820152602001610320565b50505050905090810190601f1680156103655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61039f6004803603604081101561038957600080fd5b506001600160a01b0381351690602001356108a5565b604080519115158252519081900360200190f35b6103d0600480360360208110156103c957600080fd5b50356108c3565b005b6103da61090e565b60408051918252519081900360200190f35b6102fe61091d565b6103d0610946565b6102fe6109f4565b6103da610a1d565b6102fe610a23565b61039f6004803603606081101561042a57600080fd5b506001600160a01b03813581169160208101359091169060400135610a45565b6103da6004803603602081101561046057600080fd5b5035610ad2565b6103da610ae7565b6102fe610aed565b6102fe610b0c565b6103d06004803603604081101561049557600080fd5b50803590602001356001600160a01b0316610b2f565b6104b3610b9b565b6040805160ff9092168252519081900360200190f35b6103d0600480360360408110156104df57600080fd5b50803590602001356001600160a01b0316610ba4565b6103da610c05565b61039f6004803603604081101561051357600080fd5b506001600160a01b038135169060200135610c14565b6103d0610c68565b6103d06004803603604081101561054757600080fd5b506001600160a01b038135169060200135610cd9565b6103d06004803603602081101561057357600080fd5b5035610dc4565b6103da610dd8565b61039f610de7565b6103da610e2b565b6102fe610e31565b61039f610e58565b6103da610e66565b6103da600480360360208110156105c057600080fd5b50356001600160a01b0316610e6c565b6103d0600480360360408110156105e657600080fd5b506001600160a01b038135169060200135610e87565b6103d0610ee7565b6103da610f56565b61062f6004803603604081101561062257600080fd5b5080359060200135610f5c565b604080516001600160a01b039092168252519081900360200190f35b61039f6004803603604081101561066157600080fd5b50803590602001356001600160a01b0316610f81565b6102fe610f9f565b6103da611000565b6102fe611005565b61039f600480360360408110156106a557600080fd5b506001600160a01b038135169060200135611066565b61039f600480360360408110156106d157600080fd5b506001600160a01b0381351690602001356110d4565b6103d0600480360360208110156106fd57600080fd5b81019060208101813564010000000081111561071857600080fd5b82018360208201111561072a57600080fd5b8035906020019184600183028401116401000000008311171561074c57600080fd5b5090925090506110e8565b6103da6004803603602081101561076d57600080fd5b503561113a565b6103da611151565b6103d06004803603604081101561079257600080fd5b50803590602001356001600160a01b0316611174565b6103d06111cd565b6103da600480360360408110156107c657600080fd5b506001600160a01b03813581169160200135166112de565b6102fe611309565b6102fe611331565b6103da61135b565b6102fe61137e565b6102fe61140c565b6102fe611433565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b505050505090505b90565b60006108b96108b2611458565b848461145c565b5060015b92915050565b6108ce600033610f81565b6109095760405162461bcd60e51b815260040180806020018281038252602d815260200180612132602d913960400191505060405180910390fd5b600a55565b6a295be96e6406697200000081565b6040518060400160405280600d81526020016c54494d4552536e6574776f726b60981b81525081565b610951600033610f81565b61098c5760405162461bcd60e51b815260040180806020018281038252602e81526020018061229f602e913960400191505060405180910390fd5b60095460ff1615156001146109e8576040805162461bcd60e51b815260206004820152601f60248201527f4572726f723a2043726f776453616c6520616c72656164792061637469766500604482015290519081900360640190fd5b6009805460ff19169055565b6040518060400160405280600d81526020016c74696d6572736e6574776f726b60981b81525081565b60035490565b6040518060400160405280600681526020016554494d45525360d01b81525081565b6000610a52848484611548565b610ac884610a5e611458565b610ac3856040518060600160405280602881526020016121d7602891396001600160a01b038a16600090815260026020526040812090610a9c611458565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6116b116565b61145c565b5060019392505050565b60009081526020819052604090206002015490565b60085490565b6040518060400160405280600381526020016249504d60e81b81525081565b60408051808201909152600981526854494d45525369706d60b81b602082015290565b600082815260208190526040902060020154610b5290610b4d611458565b610f81565b610b8d5760405162461bcd60e51b815260040180806020018281038252602f815260200180612065602f913960400191505060405180910390fd5b610b978282611748565b5050565b60065460ff1690565b610bac611458565b6001600160a01b0316816001600160a01b031614610bfb5760405162461bcd60e51b815260040180806020018281038252602f815260200180612379602f913960400191505060405180910390fd5b610b9782826117b7565b6a04a1d89bb94865ec00000081565b60006108b9610c21611458565b84610ac38560026000610c32611458565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61182616565b604080516a5041555345525f524f4c4560a81b8152905190819003600b019020610c9490610b4d611458565b610ccf5760405162461bcd60e51b81526004018080602001828103825260398152602001806120b66039913960400191505060405180910390fd5b610cd7611880565b565b60095460ff161580610cfe575060095460ff1615156001148015610cfe575060075442115b610d395760405162461bcd60e51b815260040180806020018281038252602281526020018061215f6022913960400191505060405180910390fd5b60095460ff16610dba576a0c13ab95fe7cc095000000610d6782610d5b610a1d565b9063ffffffff61182616565b1115610dba576040805162461bcd60e51b815260206004820152601760248201527f43726f776453616c653a20636170206578636565646564000000000000000000604482015290519081900360640190fd5b610b978282611924565b610dd5610dcf611458565b82611995565b50565b6a0c13ab95fe7cc09500000081565b6000610df38133610f81565b15610e00575060016108a2565b60095460ff1615156001148015610e18575060085442115b15610e25575060016108a2565b50600090565b60075490565b60408051808201909152600d81526c74696d6572736e6574776f726b60981b602082015290565b600654610100900460ff1690565b600a5490565b6001600160a01b031660009081526001602052604090205490565b6000610ec48260405180606001604052806024815260200161223560249139610eb786610eb2611458565b6112de565b919063ffffffff6116b116565b9050610ed883610ed2611458565b8361145c565b610ee28383611995565b505050565b604080516a5041555345525f524f4c4560a81b8152905190819003600b019020610f1390610b4d611458565b610f4e5760405162461bcd60e51b81526004018080602001828103825260378152602001806122f16037913960400191505060405180910390fd5b610cd7611a9d565b600a5481565b6000828152602081905260408120610f7a908363ffffffff611b2516565b9392505050565b6000828152602081905260408120610f7a908363ffffffff611b3116565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089a5780601f1061086f5761010080835404028352916020019161089a565b600081565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089a5780601f1061086f5761010080835404028352916020019161089a565b60006108b9611073611458565b84610ac385604051806060016040528060258152602001612354602591396002600061109d611458565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6116b116565b60006108b96110e1611458565b8484611548565b6110f3600033610f81565b61112e5760405162461bcd60e51b815260040180806020018281038252602c815260200180612328602c913960400191505060405180910390fd5b610ee2600b8383611f87565b60008181526020819052604081206108bd90611b46565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902081565b60008281526020819052604090206002015461119290610b4d611458565b610bfb5760405162461bcd60e51b81526004018080602001828103825260308152602001806121a76030913960400191505060405180910390fd5b6111d8600033610f81565b6112135760405162461bcd60e51b815260040180806020018281038252602e81526020018061229f602e913960400191505060405180910390fd5b60095460ff16156112555760405162461bcd60e51b81526004018080602001828103825260218152602001806120ef6021913960400191505060405180910390fd5b6009805460ff19166001179055426206978081016008556301e13380016007557fa5e0bc4ea02dae0a7220eb96396d38de514bde24a4734e1d4e9c66c106c65b326112b96a04a1d89bb94865ec0000006112ad610a1d565b9063ffffffff611b5116565b60075460085460408051938452602084019290925282820152519081900360600190a1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60408051808201909152600e81526d74696d6572732e6e6574776f726b60901b602082015290565b6040518060400160405280600e81526020016d74696d6572732e6e6574776f726b60901b81525081565b604080516a5041555345525f524f4c4560a81b8152905190819003600b01902081565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156114045780601f106113d957610100808354040283529160200191611404565b820191906000526020600020905b8154815290600101906020018083116113e757829003601f168201915b505050505081565b60408051808201909152600d81526c54494d4552536e6574776f726b60981b602082015290565b6040518060400160405280600981526020016854494d45525369706d60b81b81525081565b3390565b6001600160a01b0383166114a15760405162461bcd60e51b81526004018080602001828103825260248152602001806122cd6024913960400191505060405180910390fd5b6001600160a01b0382166114e65760405162461bcd60e51b81526004018080602001828103825260228152602001806121106022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661158d5760405162461bcd60e51b815260040180806020018281038252602581526020018061227a6025913960400191505060405180910390fd5b6001600160a01b0382166115d25760405162461bcd60e51b81526004018080602001828103825260238152602001806120426023913960400191505060405180910390fd5b6115dd838383611b93565b61162081604051806060016040528060268152602001612181602691396001600160a01b038616600090815260016020526040902054919063ffffffff6116b116565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611655908263ffffffff61182616565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156117405760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117055781810151838201526020016116ed565b50505050905090810190601f1680156117325780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828152602081905260409020611766908263ffffffff611c7516565b15610b9757611773611458565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206117d5908263ffffffff611c8a16565b15610b97576117e2611458565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082820183811015610f7a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600654610100900460ff166118d3576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611907611458565b604080516001600160a01b039092168252519081900360200190a1565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902061195090610b4d611458565b61198b5760405162461bcd60e51b81526004018080602001828103825260368152602001806121ff6036913960400191505060405180910390fd5b610b978282611c9f565b6001600160a01b0382166119da5760405162461bcd60e51b81526004018080602001828103825260218152602001806122596021913960400191505060405180910390fd5b6119e682600083611b93565b611a2981604051806060016040528060228152602001612094602291396001600160a01b038516600090815260016020526040902054919063ffffffff6116b116565b6001600160a01b038316600090815260016020526040902055600354611a55908263ffffffff611b5116565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600654610100900460ff1615611aed576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611907611458565b6000610f7a8383611d9d565b6000610f7a836001600160a01b038416611e01565b60006108bd82611e19565b6000610f7a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116b1565b611b9e838383611e1d565b611ba6610de7565b80611bb857506001600160a01b038316155b611c09576040805162461bcd60e51b815260206004820152601e60248201527f4572726f723a20546f6b656e206973206e6f7420616374697665207965740000604482015290519081900360640190fd5b6001600160a01b038316610ee2576a295be96e64066972000000611c2f82610d5b610a1d565b1115610ee2576040805162461bcd60e51b815260206004820152601060248201526f13585e0818d85c08195e18d95959195960821b604482015290519081900360640190fd5b6000610f7a836001600160a01b038416611e28565b6000610f7a836001600160a01b038416611e72565b6001600160a01b038216611cfa576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611d0660008383611b93565b600354611d19908263ffffffff61182616565b6003556001600160a01b038216600090815260016020526040902054611d45908263ffffffff61182616565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b81546000908210611ddf5760405162461bcd60e51b81526004018080602001828103825260228152602001806120206022913960400191505060405180910390fd5b826000018281548110611dee57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b610ee2838383611f38565b6000611e348383611e01565b611e6a575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108bd565b5060006108bd565b60008181526001830160205260408120548015611f2e5783546000198083019190810190600090879083908110611ea557fe5b9060005260206000200154905080876000018481548110611ec257fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611ef257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108bd565b60009150506108bd565b611f43838383610ee2565b611f4b610e58565b15610ee25760405162461bcd60e51b815260040180806020018281038252602a8152602001806123a8602a913960400191505060405180910390fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611fc85782800160ff19823516178555611ff5565b82800160010185558215611ff5579182015b82811115611ff5578235825591602001919060010190611fda565b50612001929150612005565b5090565b6108a291905b80821115612001576000815560010161200b56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e70617573654572726f723a2043726f776453616c6520616c72656164792066696e697368656445524332303a20617070726f766520746f20746865207a65726f20616464726573734572726f723a20747769747465722070726f6f662063616e206f6e6c79206265207365742062792061646d696e4572726f723a206d696e74696e672069732063757272656e746c79206c6f636b656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734572726f723a20596f7520617265206e6f7420616c6c6f77656420746f20757365207468697320636f6d6d616e6445524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f2070617573654572726f723a206769746875622070726f6f662063616e206f6e6c79206265207365742062792061646d696e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212202fd073f4dd4df3adcca5cbebbc5a58d412a19ac55da7b5b163c69767f58c0d7964736f6c6343000602003345524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102f15760003560e01c80635b18b3cf1161019d578063a9059cbb116100e9578063dd62ed3e116100a2578063e63ab1e91161007c578063e63ab1e9146107ee578063f0f1270b146107f6578063f175e6a9146107fe578063f68df7ab14610806576102f1565b8063dd62ed3e146107b0578063df51aa49146107de578063df9ce794146107e6576102f1565b8063a9059cbb146106bb578063be197383146106e7578063ca15c87314610757578063d539139314610774578063d547741f1461077c578063d67c1a7a146107a8576102f1565b80638a71ce561161015657806395d89b411161013057806395d89b4114610677578063a217fddf1461067f578063a26a29ed14610687578063a457c2d71461068f576102f1565b80638a71ce56146106045780639010d07c1461060c57806391d148541461064b576102f1565b80635b18b3cf146105925780635c975abb1461059a578063635f2b73146105a257806370a08231146105aa57806379cc6790146105d05780638456cb59146105fc576102f1565b80632a9053181161025c578063395093511161021557806342966c68116101ef57806342966c681461055d578063435f70761461057a578063493a8d0c14610582578063533d62d91461058a576102f1565b806339509351146104fd5780633f4ba83a1461052957806340c10f1914610531576102f1565b80632a9053181461046f5780632dd0fc9d146104775780632f2ff15d1461047f578063313ce567146104ab57806336568abe146104c957806336c20dcf146104f5576102f1565b8063141751fb116102ae578063141751fb146103fc57806318160ddd14610404578063188214001461040c57806323b872dd14610414578063248a9ca31461044a578063287f38e314610467576102f1565b806306fdde03146102f6578063095ea7b31461037357806309e09a96146103b35780630cfccc83146103d2578063124ee68f146103ec57806312912ff7146103f4575b600080fd5b6102fe61080e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610338578181015183820152602001610320565b50505050905090810190601f1680156103655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61039f6004803603604081101561038957600080fd5b506001600160a01b0381351690602001356108a5565b604080519115158252519081900360200190f35b6103d0600480360360208110156103c957600080fd5b50356108c3565b005b6103da61090e565b60408051918252519081900360200190f35b6102fe61091d565b6103d0610946565b6102fe6109f4565b6103da610a1d565b6102fe610a23565b61039f6004803603606081101561042a57600080fd5b506001600160a01b03813581169160208101359091169060400135610a45565b6103da6004803603602081101561046057600080fd5b5035610ad2565b6103da610ae7565b6102fe610aed565b6102fe610b0c565b6103d06004803603604081101561049557600080fd5b50803590602001356001600160a01b0316610b2f565b6104b3610b9b565b6040805160ff9092168252519081900360200190f35b6103d0600480360360408110156104df57600080fd5b50803590602001356001600160a01b0316610ba4565b6103da610c05565b61039f6004803603604081101561051357600080fd5b506001600160a01b038135169060200135610c14565b6103d0610c68565b6103d06004803603604081101561054757600080fd5b506001600160a01b038135169060200135610cd9565b6103d06004803603602081101561057357600080fd5b5035610dc4565b6103da610dd8565b61039f610de7565b6103da610e2b565b6102fe610e31565b61039f610e58565b6103da610e66565b6103da600480360360208110156105c057600080fd5b50356001600160a01b0316610e6c565b6103d0600480360360408110156105e657600080fd5b506001600160a01b038135169060200135610e87565b6103d0610ee7565b6103da610f56565b61062f6004803603604081101561062257600080fd5b5080359060200135610f5c565b604080516001600160a01b039092168252519081900360200190f35b61039f6004803603604081101561066157600080fd5b50803590602001356001600160a01b0316610f81565b6102fe610f9f565b6103da611000565b6102fe611005565b61039f600480360360408110156106a557600080fd5b506001600160a01b038135169060200135611066565b61039f600480360360408110156106d157600080fd5b506001600160a01b0381351690602001356110d4565b6103d0600480360360208110156106fd57600080fd5b81019060208101813564010000000081111561071857600080fd5b82018360208201111561072a57600080fd5b8035906020019184600183028401116401000000008311171561074c57600080fd5b5090925090506110e8565b6103da6004803603602081101561076d57600080fd5b503561113a565b6103da611151565b6103d06004803603604081101561079257600080fd5b50803590602001356001600160a01b0316611174565b6103d06111cd565b6103da600480360360408110156107c657600080fd5b506001600160a01b03813581169160200135166112de565b6102fe611309565b6102fe611331565b6103da61135b565b6102fe61137e565b6102fe61140c565b6102fe611433565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b505050505090505b90565b60006108b96108b2611458565b848461145c565b5060015b92915050565b6108ce600033610f81565b6109095760405162461bcd60e51b815260040180806020018281038252602d815260200180612132602d913960400191505060405180910390fd5b600a55565b6a295be96e6406697200000081565b6040518060400160405280600d81526020016c54494d4552536e6574776f726b60981b81525081565b610951600033610f81565b61098c5760405162461bcd60e51b815260040180806020018281038252602e81526020018061229f602e913960400191505060405180910390fd5b60095460ff1615156001146109e8576040805162461bcd60e51b815260206004820152601f60248201527f4572726f723a2043726f776453616c6520616c72656164792061637469766500604482015290519081900360640190fd5b6009805460ff19169055565b6040518060400160405280600d81526020016c74696d6572736e6574776f726b60981b81525081565b60035490565b6040518060400160405280600681526020016554494d45525360d01b81525081565b6000610a52848484611548565b610ac884610a5e611458565b610ac3856040518060600160405280602881526020016121d7602891396001600160a01b038a16600090815260026020526040812090610a9c611458565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6116b116565b61145c565b5060019392505050565b60009081526020819052604090206002015490565b60085490565b6040518060400160405280600381526020016249504d60e81b81525081565b60408051808201909152600981526854494d45525369706d60b81b602082015290565b600082815260208190526040902060020154610b5290610b4d611458565b610f81565b610b8d5760405162461bcd60e51b815260040180806020018281038252602f815260200180612065602f913960400191505060405180910390fd5b610b978282611748565b5050565b60065460ff1690565b610bac611458565b6001600160a01b0316816001600160a01b031614610bfb5760405162461bcd60e51b815260040180806020018281038252602f815260200180612379602f913960400191505060405180910390fd5b610b9782826117b7565b6a04a1d89bb94865ec00000081565b60006108b9610c21611458565b84610ac38560026000610c32611458565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61182616565b604080516a5041555345525f524f4c4560a81b8152905190819003600b019020610c9490610b4d611458565b610ccf5760405162461bcd60e51b81526004018080602001828103825260398152602001806120b66039913960400191505060405180910390fd5b610cd7611880565b565b60095460ff161580610cfe575060095460ff1615156001148015610cfe575060075442115b610d395760405162461bcd60e51b815260040180806020018281038252602281526020018061215f6022913960400191505060405180910390fd5b60095460ff16610dba576a0c13ab95fe7cc095000000610d6782610d5b610a1d565b9063ffffffff61182616565b1115610dba576040805162461bcd60e51b815260206004820152601760248201527f43726f776453616c653a20636170206578636565646564000000000000000000604482015290519081900360640190fd5b610b978282611924565b610dd5610dcf611458565b82611995565b50565b6a0c13ab95fe7cc09500000081565b6000610df38133610f81565b15610e00575060016108a2565b60095460ff1615156001148015610e18575060085442115b15610e25575060016108a2565b50600090565b60075490565b60408051808201909152600d81526c74696d6572736e6574776f726b60981b602082015290565b600654610100900460ff1690565b600a5490565b6001600160a01b031660009081526001602052604090205490565b6000610ec48260405180606001604052806024815260200161223560249139610eb786610eb2611458565b6112de565b919063ffffffff6116b116565b9050610ed883610ed2611458565b8361145c565b610ee28383611995565b505050565b604080516a5041555345525f524f4c4560a81b8152905190819003600b019020610f1390610b4d611458565b610f4e5760405162461bcd60e51b81526004018080602001828103825260378152602001806122f16037913960400191505060405180910390fd5b610cd7611a9d565b600a5481565b6000828152602081905260408120610f7a908363ffffffff611b2516565b9392505050565b6000828152602081905260408120610f7a908363ffffffff611b3116565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089a5780601f1061086f5761010080835404028352916020019161089a565b600081565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089a5780601f1061086f5761010080835404028352916020019161089a565b60006108b9611073611458565b84610ac385604051806060016040528060258152602001612354602591396002600061109d611458565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6116b116565b60006108b96110e1611458565b8484611548565b6110f3600033610f81565b61112e5760405162461bcd60e51b815260040180806020018281038252602c815260200180612328602c913960400191505060405180910390fd5b610ee2600b8383611f87565b60008181526020819052604081206108bd90611b46565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902081565b60008281526020819052604090206002015461119290610b4d611458565b610bfb5760405162461bcd60e51b81526004018080602001828103825260308152602001806121a76030913960400191505060405180910390fd5b6111d8600033610f81565b6112135760405162461bcd60e51b815260040180806020018281038252602e81526020018061229f602e913960400191505060405180910390fd5b60095460ff16156112555760405162461bcd60e51b81526004018080602001828103825260218152602001806120ef6021913960400191505060405180910390fd5b6009805460ff19166001179055426206978081016008556301e13380016007557fa5e0bc4ea02dae0a7220eb96396d38de514bde24a4734e1d4e9c66c106c65b326112b96a04a1d89bb94865ec0000006112ad610a1d565b9063ffffffff611b5116565b60075460085460408051938452602084019290925282820152519081900360600190a1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60408051808201909152600e81526d74696d6572732e6e6574776f726b60901b602082015290565b6040518060400160405280600e81526020016d74696d6572732e6e6574776f726b60901b81525081565b604080516a5041555345525f524f4c4560a81b8152905190819003600b01902081565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156114045780601f106113d957610100808354040283529160200191611404565b820191906000526020600020905b8154815290600101906020018083116113e757829003601f168201915b505050505081565b60408051808201909152600d81526c54494d4552536e6574776f726b60981b602082015290565b6040518060400160405280600981526020016854494d45525369706d60b81b81525081565b3390565b6001600160a01b0383166114a15760405162461bcd60e51b81526004018080602001828103825260248152602001806122cd6024913960400191505060405180910390fd5b6001600160a01b0382166114e65760405162461bcd60e51b81526004018080602001828103825260228152602001806121106022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661158d5760405162461bcd60e51b815260040180806020018281038252602581526020018061227a6025913960400191505060405180910390fd5b6001600160a01b0382166115d25760405162461bcd60e51b81526004018080602001828103825260238152602001806120426023913960400191505060405180910390fd5b6115dd838383611b93565b61162081604051806060016040528060268152602001612181602691396001600160a01b038616600090815260016020526040902054919063ffffffff6116b116565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611655908263ffffffff61182616565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156117405760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117055781810151838201526020016116ed565b50505050905090810190601f1680156117325780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828152602081905260409020611766908263ffffffff611c7516565b15610b9757611773611458565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206117d5908263ffffffff611c8a16565b15610b97576117e2611458565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082820183811015610f7a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600654610100900460ff166118d3576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611907611458565b604080516001600160a01b039092168252519081900360200190a1565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902061195090610b4d611458565b61198b5760405162461bcd60e51b81526004018080602001828103825260368152602001806121ff6036913960400191505060405180910390fd5b610b978282611c9f565b6001600160a01b0382166119da5760405162461bcd60e51b81526004018080602001828103825260218152602001806122596021913960400191505060405180910390fd5b6119e682600083611b93565b611a2981604051806060016040528060228152602001612094602291396001600160a01b038516600090815260016020526040902054919063ffffffff6116b116565b6001600160a01b038316600090815260016020526040902055600354611a55908263ffffffff611b5116565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600654610100900460ff1615611aed576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611907611458565b6000610f7a8383611d9d565b6000610f7a836001600160a01b038416611e01565b60006108bd82611e19565b6000610f7a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116b1565b611b9e838383611e1d565b611ba6610de7565b80611bb857506001600160a01b038316155b611c09576040805162461bcd60e51b815260206004820152601e60248201527f4572726f723a20546f6b656e206973206e6f7420616374697665207965740000604482015290519081900360640190fd5b6001600160a01b038316610ee2576a295be96e64066972000000611c2f82610d5b610a1d565b1115610ee2576040805162461bcd60e51b815260206004820152601060248201526f13585e0818d85c08195e18d95959195960821b604482015290519081900360640190fd5b6000610f7a836001600160a01b038416611e28565b6000610f7a836001600160a01b038416611e72565b6001600160a01b038216611cfa576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611d0660008383611b93565b600354611d19908263ffffffff61182616565b6003556001600160a01b038216600090815260016020526040902054611d45908263ffffffff61182616565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b81546000908210611ddf5760405162461bcd60e51b81526004018080602001828103825260228152602001806120206022913960400191505060405180910390fd5b826000018281548110611dee57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b610ee2838383611f38565b6000611e348383611e01565b611e6a575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108bd565b5060006108bd565b60008181526001830160205260408120548015611f2e5783546000198083019190810190600090879083908110611ea557fe5b9060005260206000200154905080876000018481548110611ec257fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611ef257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108bd565b60009150506108bd565b611f43838383610ee2565b611f4b610e58565b15610ee25760405162461bcd60e51b815260040180806020018281038252602a8152602001806123a8602a913960400191505060405180910390fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611fc85782800160ff19823516178555611ff5565b82800160010185558215611ff5579182015b82811115611ff5578235825591602001919060010190611fda565b50612001929150612005565b5090565b6108a291905b80821115612001576000815560010161200b56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e70617573654572726f723a2043726f776453616c6520616c72656164792066696e697368656445524332303a20617070726f766520746f20746865207a65726f20616464726573734572726f723a20747769747465722070726f6f662063616e206f6e6c79206265207365742062792061646d696e4572726f723a206d696e74696e672069732063757272656e746c79206c6f636b656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734572726f723a20596f7520617265206e6f7420616c6c6f77656420746f20757365207468697320636f6d6d616e6445524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f2070617573654572726f723a206769746875622070726f6f662063616e206f6e6c79206265207365742062792061646d696e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212202fd073f4dd4df3adcca5cbebbc5a58d412a19ac55da7b5b163c69767f58c0d7964736f6c63430006020033

Deployed Bytecode Sourcemap

50629:7703:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50629:7703:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33429:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33429:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35535:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35535:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;57376:223;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;57376:223:0;;:::i;:::-;;51389:77;;;:::i;:::-;;;;;;;;;;;;;;;;52231:54;;;:::i;54590:272::-;;;:::i;52412:53::-;;;:::i;34504:100::-;;;:::i;50890:60::-;;;:::i;36178:321::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36178:321:0;;;;;;;;;;;;;;;;;:::i;19735:114::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19735:114:0;;:::i;55841:108::-;;;:::i;50978:57::-;;;:::i;56759:109::-;;;:::i;20111:227::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20111:227:0;;;;;;-1:-1:-1;;;;;20111:227:0;;:::i;34356:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21320:209;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21320:209:0;;;;;;-1:-1:-1;;;;;21320:209:0;;:::i;51151:77::-;;;:::i;36908:218::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36908:218:0;;;;;;;;:::i;49001:178::-;;;:::i;53028:405::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;53028:405:0;;;;;;;;:::i;42757:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42757:91:0;;:::i;51277:77::-;;;:::i;54127:276::-;;;:::i;55957:104::-;;;:::i;56943:105::-;;;:::i;44572:78::-;;;:::i;57665:111::-;;;:::i;34667:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34667:119:0;-1:-1:-1;;;;;34667:119:0;;:::i;43167:295::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;43167:295:0;;;;;;;;:::i;48611:172::-;;;:::i;52472:33::-;;;:::i;19408:138::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19408:138:0;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;19408:138:0;;;;;;;;;;;;;;18369:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18369:139:0;;;;;;-1:-1:-1;;;;;18369:139:0;;:::i;33631:87::-;;;:::i;17114:49::-;;;:::i;58215:114::-;;;:::i;37629:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37629:269:0;;;;;;;;:::i;34999:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34999:175:0;;;;;;;;:::i;57928:222::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;57928:222:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;57928:222:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;57928:222:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;57928:222:0;;-1:-1:-1;57928:222:0;-1:-1:-1;57928:222:0;:::i;18682:127::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18682:127:0;;:::i;47427:62::-;;;:::i;20583:230::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20583:230:0;;;;;;-1:-1:-1;;;;;20583:230:0;;:::i;55100:733::-;;;:::i;35237:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35237:151:0;;;;;;;;;;:::i;57116:107::-;;;:::i;52350:55::-;;;:::i;47496:62::-;;;:::i;52512:30::-;;;:::i;56575:107::-;;;:::i;52292:51::-;;;:::i;33429:83::-;33499:5;33492:12;;;;;;;;-1:-1:-1;;33492:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33466:13;;33492:12;;33499:5;;33492:12;;33499:5;33492:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33429:83;;:::o;35535:169::-;35618:4;35635:39;35644:12;:10;:12::i;:::-;35658:7;35667:6;35635:8;:39::i;:::-;-1:-1:-1;35692:4:0;35535:169;;;;;:::o;57376:223::-;57452:39;17159:4;57480:10;57452:7;:39::i;:::-;57444:97;;;;-1:-1:-1;;;57444:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57552:18;:39;57376:223::o;51389:77::-;51445:21;51389:77;:::o;52231:54::-;;;;;;;;;;;;;;-1:-1:-1;;;52231:54:0;;;;:::o;54590:272::-;54644:39;17159:4;54672:10;54644:7;:39::i;:::-;54636:98;;;;-1:-1:-1;;;54636:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54753:17;;;;:25;;:17;:25;54745:69;;;;;-1:-1:-1;;;54745:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;54825:17;:29;;-1:-1:-1;;54825:29:0;;;54590:272::o;52412:53::-;;;;;;;;;;;;;;-1:-1:-1;;;52412:53:0;;;;:::o;34504:100::-;34584:12;;34504:100;:::o;50890:60::-;;;;;;;;;;;;;;-1:-1:-1;;;50890:60:0;;;;:::o;36178:321::-;36284:4;36301:36;36311:6;36319:9;36330:6;36301:9;:36::i;:::-;36348:121;36357:6;36365:12;:10;:12::i;:::-;36379:89;36417:6;36379:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36379:19:0;;;;;;:11;:19;;;;;;36399:12;:10;:12::i;:::-;-1:-1:-1;;;;;36379:33:0;;;;;;;;;;;;-1:-1:-1;36379:33:0;;;:89;;:37;:89;:::i;:::-;36348:8;:121::i;:::-;-1:-1:-1;36487:4:0;36178:321;;;;;:::o;19735:114::-;19792:7;19819:12;;;;;;;;;;:22;;;;19735:114::o;55841:108::-;55922:19;;55841:108;:::o;50978:57::-;;;;;;;;;;;;;;-1:-1:-1;;;50978:57:0;;;;:::o;56759:109::-;56846:14;;;;;;;;;;;;-1:-1:-1;;;56846:14:0;;;;56759:109;:::o;20111:227::-;20203:6;:12;;;;;;;;;;:22;;;20195:45;;20227:12;:10;:12::i;:::-;20195:7;:45::i;:::-;20187:105;;;;-1:-1:-1;;;20187:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20305:25;20316:4;20322:7;20305:10;:25::i;:::-;20111:227;;:::o;34356:83::-;34422:9;;;;34356:83;:::o;21320:209::-;21418:12;:10;:12::i;:::-;-1:-1:-1;;;;;21407:23:0;:7;-1:-1:-1;;;;;21407:23:0;;21399:83;;;;-1:-1:-1;;;21399:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21495:26;21507:4;21513:7;21495:11;:26::i;51151:77::-;51207:21;51151:77;:::o;36908:218::-;36996:4;37013:83;37022:12;:10;:12::i;:::-;37036:7;37045:50;37084:10;37045:11;:25;37057:12;:10;:12::i;:::-;-1:-1:-1;;;;;37045:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37045:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;49001:178::-;47534:24;;;-1:-1:-1;;;47534:24:0;;;;;;;;;;;;49054:34;;49075:12;:10;:12::i;49054:34::-;49046:104;;;;-1:-1:-1;;;49046:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49161:10;:8;:10::i;:::-;49001:178::o;53028:405::-;53113:17;;;;:26;;:84;;-1:-1:-1;53144:17:0;;;;:25;;:17;:25;:52;;;;;53179:17;;53173:3;:23;53144:52;53105:131;;;;-1:-1:-1;;;53105:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53250:17;;;;53247:147;;51333:21;53301:25;53319:6;53301:13;:11;:13::i;:::-;:17;:25;:17;:25;:::i;:::-;:53;;53293:89;;;;;-1:-1:-1;;;53293:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;53404:21;53415:2;53418:6;53404:10;:21::i;42757:91::-;42813:27;42819:12;:10;:12::i;:::-;42833:6;42813:5;:27::i;:::-;42757:91;:::o;51277:77::-;51333:21;51277:77;:::o;54127:276::-;54170:4;54224:38;54170:4;54251:10;54224:7;:38::i;:::-;54221:59;;;-1:-1:-1;54273:4:0;54266:11;;54221:59;54295:17;;;;:25;;:17;:25;:54;;;;;54330:19;;54324:3;:25;54295:54;54292:75;;;-1:-1:-1;54360:4:0;54353:11;;54292:75;-1:-1:-1;54386:5:0;54127:276;:::o;55957:104::-;56036:17;;55957:104;:::o;56943:105::-;57028:12;;;;;;;;;;;;-1:-1:-1;;;57028:12:0;;;;56943:105;:::o;44572:78::-;44635:7;;;;;;;;44572:78::o;57665:111::-;57750:18;;57665:111;:::o;34667:119::-;-1:-1:-1;;;;;34760:18:0;34733:7;34760:18;;;:9;:18;;;;;;;34667:119::o;43167:295::-;43244:26;43273:84;43310:6;43273:84;;;;;;;;;;;;;;;;;:32;43283:7;43292:12;:10;:12::i;:::-;43273:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;43244:113;;43370:51;43379:7;43388:12;:10;:12::i;:::-;43402:18;43370:8;:51::i;:::-;43432:22;43438:7;43447:6;43432:5;:22::i;:::-;43167:295;;;:::o;48611:172::-;47534:24;;;-1:-1:-1;;;47534:24:0;;;;;;;;;;;;48662:34;;48683:12;:10;:12::i;48662:34::-;48654:102;;;;-1:-1:-1;;;48654:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48767:8;:6;:8::i;52472:33::-;;;;:::o;19408:138::-;19481:7;19508:12;;;;;;;;;;:30;;19532:5;19508:30;:23;:30;:::i;:::-;19501:37;19408:138;-1:-1:-1;;;19408:138:0:o;18369:139::-;18438:4;18462:12;;;;;;;;;;:38;;18492:7;18462:38;:29;:38;:::i;33631:87::-;33703:7;33696:14;;;;;;;;-1:-1:-1;;33696:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33670:13;;33696:14;;33703:7;;33696:14;;33703:7;33696:14;;;;;;;;;;;;;;;;;;;;;;;;17114:49;17159:4;17114:49;:::o;58215:114::-;58304:17;58297:24;;;;;;;;-1:-1:-1;;58297:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58272:12;;58297:24;;58304:17;;58297:24;;58304:17;58297:24;;;;;;;;;;;;;;;;;;;;;;;;37629:269;37722:4;37739:129;37748:12;:10;:12::i;:::-;37762:7;37771:96;37810:15;37771:96;;;;;;;;;;;;;;;;;:11;:25;37783:12;:10;:12::i;:::-;-1:-1:-1;;;;;37771:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37771:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;34999:175::-;35085:4;35102:42;35112:12;:10;:12::i;:::-;35126:9;35137:6;35102:9;:42::i;57928:222::-;58009:39;17159:4;58037:10;58009:7;:39::i;:::-;58001:96;;;;-1:-1:-1;;;58001:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58108:34;:17;58130:12;;58108:34;:::i;18682:127::-;18745:7;18772:12;;;;;;;;;;:29;;:27;:29::i;47427:62::-;47465:24;;;-1:-1:-1;;;47465:24:0;;;;;;;;;;;;47427:62;:::o;20583:230::-;20676:6;:12;;;;;;;;;;:22;;;20668:45;;20700:12;:10;:12::i;20668:45::-;20660:106;;;;-1:-1:-1;;;20660:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55100:733;55155:38;17159:4;55182:10;55155:7;:38::i;:::-;55147:97;;;;-1:-1:-1;;;55147:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55263:17;;;;:26;55255:72;;;;-1:-1:-1;;;55255:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55371:17;:28;;-1:-1:-1;;55371:28:0;55395:4;55371:28;;;55510:3;51862:6;55510:30;;55486:19;:54;51594:8;55636:23;55612:17;:47;55677:148;55709:39;51207:21;55709:13;:11;:13::i;:::-;:17;:39;:17;:39;:::i;:::-;55763:17;;55795:19;;55677:148;;;;;;;;;;;;;;;;;;;;;;;;;;55100:733::o;35237:151::-;-1:-1:-1;;;;;35353:18:0;;;35326:7;35353:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;35237:151::o;57116:107::-;57202:13;;;;;;;;;;;;-1:-1:-1;;;57202:13:0;;;;57116:107;:::o;52350:55::-;;;;;;;;;;;;;;-1:-1:-1;;;52350:55:0;;;;:::o;47496:62::-;47534:24;;;-1:-1:-1;;;47534:24:0;;;;;;;;;;;;47496:62;:::o;52512:30::-;;;;;;;;;;;;;;;-1:-1:-1;;52512:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56575:107::-;56661:13;;;;;;;;;;;;-1:-1:-1;;;56661:13:0;;;;56575:107;:::o;52292:51::-;;;;;;;;;;;;;;-1:-1:-1;;;52292:51:0;;;;:::o;15024:106::-;15112:10;15024:106;:::o;40776:346::-;-1:-1:-1;;;;;40878:19:0;;40870:68;;;;-1:-1:-1;;;40870:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40957:21:0;;40949:68;;;;-1:-1:-1;;;40949:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41030:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;41082:32;;;;;;;;;;;;;;;;;40776:346;;;:::o;38388:539::-;-1:-1:-1;;;;;38494:20:0;;38486:70;;;;-1:-1:-1;;;38486:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38575:23:0;;38567:71;;;;-1:-1:-1;;;38567:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38651:47;38672:6;38680:9;38691:6;38651:20;:47::i;:::-;38731:71;38753:6;38731:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38731:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;38711:17:0;;;;;;;:9;:17;;;;;;:91;;;;38836:20;;;;;;;:32;;38861:6;38836:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;38813:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;38884:35;;;;;;;38813:20;;38884:35;;;;;;;;;;;;;38388:539;;;:::o;27651:192::-;27737:7;27773:12;27765:6;;;;27757:29;;;;-1:-1:-1;;;27757:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27757:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;27809:5:0;;;27651:192::o;22563:188::-;22637:6;:12;;;;;;;;;;:33;;22662:7;22637:33;:24;:33;:::i;:::-;22633:111;;;22719:12;:10;:12::i;:::-;-1:-1:-1;;;;;22692:40:0;22710:7;-1:-1:-1;;;;;22692:40:0;22704:4;22692:40;;;;;;;;;;22563:188;;:::o;22759:192::-;22834:6;:12;;;;;;;;;;:36;;22862:7;22834:36;:27;:36;:::i;:::-;22830:114;;;22919:12;:10;:12::i;:::-;-1:-1:-1;;;;;22892:40:0;22910:7;-1:-1:-1;;;;;22892:40:0;22904:4;22892:40;;;;;;;;;;22759:192;;:::o;26748:181::-;26806:7;26838:5;;;26862:6;;;;26854:46;;;;;-1:-1:-1;;;26854:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;45621:120;45166:7;;;;;;;45158:40;;;;;-1:-1:-1;;;45158:40:0;;;;;;;;;;;;-1:-1:-1;;;45158:40:0;;;;;;;;;;;;;;;45680:7:::1;:15:::0;;-1:-1:-1;;45680:15:0::1;::::0;;45711:22:::1;45720:12;:10;:12::i;:::-;45711:22;::::0;;-1:-1:-1;;;;;45711:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;45621:120::o:0;48192:205::-;47465:24;;;-1:-1:-1;;;47465:24:0;;;;;;;;;;;;48268:34;;48289:12;:10;:12::i;48268:34::-;48260:101;;;;-1:-1:-1;;;48260:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48372:17;48378:2;48382:6;48372:5;:17::i;39918:418::-;-1:-1:-1;;;;;40002:21:0;;39994:67;;;;-1:-1:-1;;;39994:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40074:49;40095:7;40112:1;40116:6;40074:20;:49::i;:::-;40157:68;40180:6;40157:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40157:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;40136:18:0;;;;;;:9;:18;;;;;:89;40251:12;;:24;;40268:6;40251:24;:16;:24;:::i;:::-;40236:12;:39;40291:37;;;;;;;;40317:1;;-1:-1:-1;;;;;40291:37:0;;;;;;;;;;;;39918:418;;:::o;45362:118::-;44890:7;;;;;;;44889:8;44881:37;;;;;-1:-1:-1;;;44881:37:0;;;;;;;;;;;;-1:-1:-1;;;44881:37:0;;;;;;;;;;;;;;;45422:7:::1;:14:::0;;-1:-1:-1;;45422:14:0::1;;;::::0;;45452:20:::1;45459:12;:10;:12::i;6329:149::-:0;6403:7;6446:22;6450:3;6462:5;6446:3;:22::i;5624:158::-;5704:4;5728:46;5738:3;-1:-1:-1;;;;;5758:14:0;;5728:9;:46::i;5868:117::-;5931:7;5958:19;5966:3;5958:7;:19::i;27212:136::-;27270:7;27297:43;27301:1;27304;27297:43;;;;;;;;;;;;;;;;;:3;:43::i;53441:543::-;53550:42;53577:4;53582:2;53585:6;53550:26;:42::i;:::-;53684:13;:11;:13::i;:::-;:35;;;-1:-1:-1;;;;;;53701:18:0;;;53684:35;53676:78;;;;;-1:-1:-1;;;53676:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53791:18:0;;53787:180;;51445:21;53895:25;53913:6;53895:13;:11;:13::i;:25::-;:39;;53887:68;;;;;-1:-1:-1;;;53887:68:0;;;;;;;;;;;;-1:-1:-1;;;53887:68:0;;;;;;;;;;;;;;5070:143;5140:4;5164:41;5169:3;-1:-1:-1;;;;;5189:14:0;;5164:4;:41::i;5389:149::-;5462:4;5486:44;5494:3;-1:-1:-1;;;;;5514:14:0;;5486:7;:44::i;39208:378::-;-1:-1:-1;;;;;39292:21:0;;39284:65;;;;;-1:-1:-1;;;39284:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39362:49;39391:1;39395:7;39404:6;39362:20;:49::i;:::-;39439:12;;:24;;39456:6;39439:24;:16;:24;:::i;:::-;39424:12;:39;-1:-1:-1;;;;;39495:18:0;;;;;;:9;:18;;;;;;:30;;39518:6;39495:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;39474:18:0;;;;;;:9;:18;;;;;;;;:51;;;;39541:37;;;;;;;39474:18;;;;39541:37;;;;;;;;;;39208:378;;:::o;4612:204::-;4707:18;;4679:7;;4707:26;-1:-1:-1;4699:73:0;;;;-1:-1:-1;;;4699:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4790:3;:11;;4802:5;4790:18;;;;;;;;;;;;;;;;4783:25;;4612:204;;;;:::o;3944:129::-;4017:4;4041:19;;;:12;;;;;:19;;;;;;:24;;;3944:129::o;4159:109::-;4242:18;;4159:109::o;49187:183::-;49318:44;49345:4;49351:2;49355:6;49318:26;:44::i;1724:414::-;1787:4;1809:21;1819:3;1824:5;1809:9;:21::i;:::-;1804:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;1847:11:0;:23;;;;;;;;;;;;;2030:18;;2008:19;;;:12;;;:19;;;;;;:40;;;;2063:11;;1804:327;-1:-1:-1;2114:5:0;2107:12;;2314:1544;2380:4;2519:19;;;:12;;;:19;;;;;;2555:15;;2551:1300;;2990:18;;-1:-1:-1;;2941:14:0;;;;2990:22;;;;2917:21;;2990:3;;:22;;3277;;;;;;;;;;;;;;3257:42;;3423:9;3394:3;:11;;3406:13;3394:26;;;;;;;;;;;;;;;;;;;:38;;;;3500:23;;;3542:1;3500:12;;;:23;;;;;;3526:17;;;3500:43;;3652:17;;3500:3;;3652:17;;;;;;;;;;;;;;;;;;;;;;3747:3;:12;;:19;3760:5;3747:19;;;;;;;;;;;3740:26;;;3790:4;3783:11;;;;;;;;2551:1300;3834:5;3827:12;;;;;46361:238;46470:44;46497:4;46503:2;46507:6;46470:26;:44::i;:::-;46536:8;:6;:8::i;:::-;46535:9;46527:64;;;;-1:-1:-1;;;46527:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50629:7703;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50629:7703:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50629:7703:0;;;-1:-1:-1;50629:7703:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://2fd073f4dd4df3adcca5cbebbc5a58d412a19ac55da7b5b163c69767f58c0d79
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.