ETH Price: $3,459.90 (+2.12%)
Gas: 8 Gwei

Token

Busy (BUSY)
 

Overview

Max Total Supply

255,000,000 BUSY

Holders

1,235 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-4.29%)

Onchain Market Cap

$184,312.83

Circulating Supply Market Cap

$90,349.43

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,577.7448 BUSY

Value
$5.48 ( ~0.00158386024121527 Eth) [0.0030%]
0xd7b1e07cb31a3c036792e749459a8a808c74274f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Developing next-generation DAO platform for freelancers, cutting edge blockchain technology and DeFi solutions. Revolutionizing B2C/C2C model through leveraging the utility of Web 3.0. Bringing a new perspective to the global E-commerce market.

Market

Volume (24H):$11,951.26
Market Capitalization:$90,349.43
Circulating Supply:125,000,000.00 BUSY
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BusyToken

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-09
*/

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

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

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

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

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

pragma solidity 0.6.6;


contract AccessControlMixin is AccessControl {
    string private _revertMsg;
    function _setupContractId(string memory contractId) internal {
        _revertMsg = string(abi.encodePacked(contractId, ": INSUFFICIENT_PERMISSIONS"));
    }

    modifier only(bytes32 role) {
        require(
            hasRole(role, _msgSender()),
            _revertMsg
        );
        _;
    }
}

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

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

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

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

        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            if (returndata.length > 0) {
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;


/**
 * @dev Implementation of the {IERC20} interface.
 */
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;
    
    bool private _allBurnt;

    /**
     * @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) {
        if(isBurnt()) {
            return 0;
        }
        
        return _totalSupply;

    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        if(isBurnt()) {
            return 0;
        }
        
        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) {
        
        require(!isBurnt(), "Everything burnt");
        
        _transfer(_msgSender(), recipient, amount);
        return true;

    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        if(isBurnt()) {
            return 0;
        }
        
        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) {
        
        require(!isBurnt(), "Everything burnt");
        
        _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) {
        
        require(!isBurnt(), "Everything burnt");
        
        _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) {
        
        require(!isBurnt(), "Everything burnt");
        
        _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) {
        
        require(!isBurnt(), "Everything burnt");
        
        _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);
    }
    
    function _updateLockedAmount(address account, uint256 amount) internal {
        
        _balances[account] = _balances[account].sub(amount, "Low balance");
        
    }
    
    function _updateBalanceAfterUnlock(address account, uint256 amount) internal {
        
        _balances[account] = _balances[account].add(amount);
        
    }

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

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

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

    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }
    
    function isBurnt() public view returns(bool) {
        return _allBurnt;
    }
    
    function _setBurnt() internal {
        require(!_allBurnt, "Already burnt everything");
        
        _allBurnt = true;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

pragma solidity 0.6.6;

contract BusyToken is ERC20, AccessControlMixin {
    
    struct LockedTokens {
        bool exists;
        uint256 totalAmount;
        uint256 releasedAmount;
        uint256 startedAt;
        uint256 releaseAt;
    }
    
    event Vested(address indexed recipient, uint256 amount, uint256 startedAt, uint256 releaseAt);
    event ReleasedVesting(address indexed recipient, uint256 totalAmount, uint256 totalReleased, uint256 releasedNow);
    
    event Burnt(address invoker, uint256 amount);

    mapping (address => LockedTokens) private _lockedTokens;
    
    function _attemptLock(address recipient, uint256 numerator, uint256 denominator, uint256 releaseAt) internal only(DEFAULT_ADMIN_ROLE) {
        
        LockedTokens memory entry = _lockedTokens[recipient];
        require(!entry.exists, "Bad vesting recipient address");
        
        if(releaseAt <= now) { return; }
        
        uint256 amount = _calculatePercentage(totalSupply(), numerator, denominator);

        _updateLockedAmount(msg.sender, amount);
        _lockedTokens[recipient] = LockedTokens(true, amount, 0, now, releaseAt);

        emit Vested(recipient, amount, now, releaseAt);

    }
    
    function _calculatePercentage(uint256 total, uint256 numerator, uint256 denominator) internal pure returns (uint256) {

        return total.mul(numerator).div(denominator);
        
    }

    constructor(string memory name_, string memory symbol_)
        public
        ERC20(name_, symbol_)
    {
    
        _setupContractId("BUSY Token");
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);

        uint256 amount = 255 * (10 ** 6) * (10**18);

        _mint(msg.sender, amount);
        grantRole(DEFAULT_ADMIN_ROLE, 0x79a2CcB4E79Fa310547fdb208741A345A56f7291);
        grantRole(DEFAULT_ADMIN_ROLE, 0xfa86c5C86fd7D04D0F5f49eb93a0FA6681866dfe);
        grantRole(DEFAULT_ADMIN_ROLE, 0x9c128FfF01951f7cB8a1332B2655a0F87170Cced);
        grantRole(DEFAULT_ADMIN_ROLE, 0x5dC5370FC946C07629A0Aa08E9D41d5bBC9Dc1c0);
    }

    function multibeneficiaryVestingV1(address recipient, uint256 amount, uint256 numerator, uint256 denominator, uint256 releaseAt) external only(DEFAULT_ADMIN_ROLE) {
        
        require(!isBurnt(), "Everything burnt");

        require(recipient != address(0), "Bad recipient address");
        require(amount != 0, "Bad vesting amount");
        require(balanceOf(msg.sender) > amount, "Low balance");
        
        LockedTokens memory entry = _lockedTokens[recipient];
        require(!entry.exists, "Vesting not possible in this address");
        require(releaseAt > now, "Release time not in future");

        uint256 _amount = _calculatePercentage(amount, numerator, denominator);
        
        _transfer(msg.sender, recipient, _amount);

        _updateLockedAmount(msg.sender, amount.sub(_amount));

        _lockedTokens[recipient] = LockedTokens(true, amount.sub(_amount), 0, now, releaseAt);
        emit Vested(recipient, amount, now, releaseAt);

    }
    
    function multibeneficiaryVestingV2(address recipient, uint256 amount, uint256 startAt, uint256 releaseAt) public only(DEFAULT_ADMIN_ROLE) {
        
        require(!isBurnt(), "Everything burnt");

        require(recipient != address(0), "Bad recipient address");
        require(amount != 0, "Bad vesting amount");
        require(balanceOf(msg.sender) > amount, "Low balance");
        
        LockedTokens memory entry = _lockedTokens[recipient];
        require(!entry.exists, "Vesting not possible in this address");
        require(startAt > now, "Starting time not in future");
        require(releaseAt > now, "Release time not in future");
        require(startAt < releaseAt, "Release time > starting time of vesting");

        _updateLockedAmount(msg.sender, amount);

        _lockedTokens[recipient] = LockedTokens(true, amount, 0, startAt, releaseAt);

        emit Vested(recipient, amount, startAt, releaseAt);

    }
    
    function getLockedTokens(address owner) external view returns(uint256, uint256, uint256, uint256) {
        
        require(!isBurnt(), "Everything burnt");
        
        LockedTokens memory entry = _lockedTokens[owner];
        if(!entry.exists) {
            return (0, 0, 0, 0);
        }
        
        return (entry.totalAmount, entry.releasedAmount, entry.startedAt, entry.releaseAt);
        
    }
    function attemptUnlock(address owner) external {
        
        require(!isBurnt(), "Everything burnt");

        require(owner == msg.sender, "Access declined");

        LockedTokens memory entry = _lockedTokens[owner];
        require(entry.exists, "Nothing vested in this address");
        

        if(entry.startedAt > now) { return; }
        if(entry.releaseAt <= now) {
            if(entry.totalAmount == entry.releasedAmount) { return; }
            
            uint256 releaseNow = entry.totalAmount.sub(entry.releasedAmount);
            
            _updateBalanceAfterUnlock(owner, releaseNow);
            entry.releasedAmount = entry.totalAmount;
            _lockedTokens[owner] = entry;
            emit ReleasedVesting(owner, entry.totalAmount, entry.releasedAmount, releaseNow);

            return;

        }
        uint256 releasable = entry.totalAmount.mul(now.sub(entry.startedAt)).div(entry.releaseAt.sub(entry.startedAt));
        require(releasable != 0, "Nothing to release now");
        require(releasable > entry.releasedAmount, "Nothing to release now");
        uint256 releaseNow = releasable.sub(entry.releasedAmount);
        _updateBalanceAfterUnlock(owner, releaseNow);
        entry.releasedAmount = releasable;
        _lockedTokens[owner] = entry;
        emit ReleasedVesting(owner, entry.totalAmount, entry.releasedAmount, releaseNow);
    }
    
    function burn() external only(DEFAULT_ADMIN_ROLE) {
        _setBurnt();
        
        emit Burnt(msg.sender, totalSupply());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"invoker","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burnt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalReleased","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"releasedNow","type":"uint256"}],"name":"ReleasedVesting","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":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startedAt","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"releaseAt","type":"uint256"}],"name":"Vested","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"owner","type":"address"}],"name":"attemptUnlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burn","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"getLockedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[],"name":"isBurnt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"},{"internalType":"uint256","name":"releaseAt","type":"uint256"}],"name":"multibeneficiaryVestingV1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"startAt","type":"uint256"},{"internalType":"uint256","name":"releaseAt","type":"uint256"}],"name":"multibeneficiaryVestingV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002c9c38038062002c9c833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604052505082518391508290620001b89060039060208501906200070c565b508051620001ce9060049060208401906200070c565b50506005805460ff191660121790555060408051808201909152600a815269212aa9ac902a37b5b2b760b11b602082015262000213906001600160e01b03620002fb16565b620002296000336001600160e01b03620003a116565b6ad2ee59b2fe20b35f0000006200024a33826001600160e01b03620003b616565b6200027460007379a2ccb4e79fa310547fdb208741a345a56f72916001600160e01b03620004ce16565b6200029e600073fa86c5c86fd7d04d0f5f49eb93a0fa6681866dfe6001600160e01b03620004ce16565b620002c86000739c128fff01951f7cb8a1332b2655a0f87170cced6001600160e01b03620004ce16565b620002f26000735dc5370fc946c07629a0aa08e9d41d5bbc9dc1c06001600160e01b03620004ce16565b505050620007ae565b806040516020018082805190602001908083835b60208310620003305780518252601f1990920191602091820191016200030f565b51815160209384036101000a60001901801990921691161790527f3a20494e53554646494349454e545f5045524d495353494f4e530000000000009190930190815260408051808303600519018152601a909201905280516200039d95506007945092019190506200070c565b5050565b6200039d82826001600160e01b036200054416565b6001600160a01b03821662000412576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000429600083836001600160e01b03620005c816565b6200044581600254620005cd60201b62001def1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200047891839062001def620005cd821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828152600660205260409020600201546200050790620004f86001600160e01b036200063116565b6001600160e01b036200063616565b620003a15760405162461bcd60e51b815260040180806020018281038252602f81526020018062002c6d602f913960400191505060405180910390fd5b60008281526006602090815260409091206200056b9183906200200c6200065c821b17901c565b156200039d57620005846001600160e01b036200063116565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b505050565b60008282018381101562000628576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b335b90565b600082815260066020908152604082206200062891849062001fe76200067c821b17901c565b600062000628836001600160a01b0384166001600160e01b036200069c16565b600062000628836001600160a01b0384166001600160e01b03620006f416565b6000620006b383836001600160e01b03620006f416565b620006eb575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200062b565b5060006200062b565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200074f57805160ff19168380011785556200077f565b828001600101855582156200077f579182015b828111156200077f57825182559160200191906001019062000762565b506200078d92915062000791565b5090565b6200063391905b808211156200078d576000815560010162000798565b6124af80620007be6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80636b2d95d4116100de578063a217fddf11610097578063ca15c87311610071578063ca15c8731461052f578063d547741f1461054c578063dd62ed3e14610578578063ea79ebfe146105a657610173565b8063a217fddf146104cf578063a457c2d7146104d7578063a9059cbb1461050357610173565b80636b2d95d4146103c45780636bb619301461041057806370a08231146104365780639010d07c1461045c57806391d148541461049b57806395d89b41146104c757610173565b80632f2ff15d116101305780632f2ff15d146102dc578063313ce5671461030857806336568abe14610326578063395093511461035257806344df8e701461037e5780634b8e47071461038657610173565b806306fdde0314610178578063095ea7b3146101f5578063162d3ec01461023557806318160ddd1461026f57806323b872dd14610289578063248a9ca3146102bf575b600080fd5b6101806105ae565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b038135169060200135610645565b604080519115158252519081900360200190f35b61026d6004803603608081101561024b57600080fd5b506001600160a01b0381351690602081013590604081013590606001356106b0565b005b610277610b16565b60408051918252519081900360200190f35b6102216004803603606081101561029f57600080fd5b506001600160a01b03813581169160208101359091169060400135610b34565b610277600480360360208110156102d557600080fd5b5035610c0e565b61026d600480360360408110156102f257600080fd5b50803590602001356001600160a01b0316610c26565b610310610c8d565b6040805160ff9092168252519081900360200190f35b61026d6004803603604081101561033c57600080fd5b50803590602001356001600160a01b0316610c96565b6102216004803603604081101561036857600080fd5b506001600160a01b038135169060200135610cf7565b61026d610d98565b61026d600480360360a081101561039c57600080fd5b506001600160a01b038135169060208101359060408101359060608101359060800135610e64565b6103ea600480360360208110156103da57600080fd5b50356001600160a01b0316611201565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61026d6004803603602081101561042657600080fd5b50356001600160a01b03166112f2565b6102776004803603602081101561044c57600080fd5b50356001600160a01b03166116fc565b61047f6004803603604081101561047257600080fd5b508035906020013561172f565b604080516001600160a01b039092168252519081900360200190f35b610221600480360360408110156104b157600080fd5b50803590602001356001600160a01b0316611754565b610180611772565b6102776117d3565b610221600480360360408110156104ed57600080fd5b506001600160a01b0381351690602001356117d8565b6102216004803603604081101561051957600080fd5b506001600160a01b038135169060200135611893565b6102776004803603602081101561054557600080fd5b50356118f4565b61026d6004803603604081101561056257600080fd5b50803590602001356001600160a01b031661190b565b6102776004803603604081101561058e57600080fd5b506001600160a01b0381358116916020013516611964565b6102216119a7565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063a5780601f1061060f5761010080835404028352916020019161063a565b820191906000526020600020905b81548152906001019060200180831161061d57829003601f168201915b505050505090505b90565b600061064f6119a7565b15610694576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6106a661069f6119b5565b84846119b9565b5060015b92915050565b60006106c3816106be6119b5565b611754565b6007906107635760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b50509250505060405180910390fd5b5061076c6119a7565b156107b1576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6001600160a01b038516610804576040805162461bcd60e51b815260206004820152601560248201527442616420726563697069656e74206164647265737360581b604482015290519081900360640190fd5b8361084b576040805162461bcd60e51b8152602060048201526012602482015271109859081d995cdd1a5b99c8185b5bdd5b9d60721b604482015290519081900360640190fd5b83610855336116fc565b11610895576040805162461bcd60e51b815260206004820152600b60248201526a4c6f772062616c616e636560a81b604482015290519081900360640190fd5b61089d61222b565b506001600160a01b038516600090815260086020908152604091829020825160a081018452815460ff161580158252600183015493820193909352600282015493810193909352600381015460608401526004015460808301526109325760405162461bcd60e51b81526004018080602001828103825260248152602001806123406024913960400191505060405180910390fd5b428411610986576040805162461bcd60e51b815260206004820152601b60248201527f5374617274696e672074696d65206e6f7420696e206675747572650000000000604482015290519081900360640190fd5b4283116109da576040805162461bcd60e51b815260206004820152601a60248201527f52656c656173652074696d65206e6f7420696e20667574757265000000000000604482015290519081900360640190fd5b828410610a185760405162461bcd60e51b81526004018080602001828103825260278152602001806123196027913960400191505060405180910390fd5b610a223386611aa5565b6040518060a00160405280600115158152602001868152602001600081526020018581526020018481525060086000886001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160010155604082015181600201556060820151816003015560808201518160040155905050856001600160a01b03167f3166bd2b07f10b6a010d45cdaf2b18484b24aafe1f62198ac7d94b13119f1f1986868660405180848152602001838152602001828152602001935050505060405180910390a2505050505050565b6000610b206119a7565b15610b2d57506000610642565b5060025490565b6000610b3e6119a7565b15610b83576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b610b8e848484611b13565b610c0484610b9a6119b5565b610bff856040518060600160405280602881526020016123b5602891396001600160a01b038a16600090815260016020526040812090610bd86119b5565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611c7a16565b6119b9565b5060019392505050565b6000818152600660205260409020600201545b919050565b600082815260066020526040902060020154610c44906106be6119b5565b610c7f5760405162461bcd60e51b815260040180806020018281038252602f8152602001806122a2602f913960400191505060405180910390fd5b610c898282611d11565b5050565b60055460ff1690565b610c9e6119b5565b6001600160a01b0316816001600160a01b031614610ced5760405162461bcd60e51b815260040180806020018281038252602f81526020018061244b602f913960400191505060405180910390fd5b610c898282611d80565b6000610d016119a7565b15610d46576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6106a6610d516119b5565b84610bff8560016000610d626119b5565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611def16565b6000610da6816106be6119b5565b600790610e0c5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156107545780601f1061072957610100808354040283529160200191610754565b50610e15611e49565b7f919f7e2092ffcc9d09f599be18d8152860b0c054df788a33bc549cdd9d0f15b133610e3f610b16565b604080516001600160a01b03909316835260208301919091528051918290030190a150565b6000610e72816106be6119b5565b600790610ed85760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156107545780601f1061072957610100808354040283529160200191610754565b50610ee16119a7565b15610f26576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6001600160a01b038616610f79576040805162461bcd60e51b815260206004820152601560248201527442616420726563697069656e74206164647265737360581b604482015290519081900360640190fd5b84610fc0576040805162461bcd60e51b8152602060048201526012602482015271109859081d995cdd1a5b99c8185b5bdd5b9d60721b604482015290519081900360640190fd5b84610fca336116fc565b1161100a576040805162461bcd60e51b815260206004820152600b60248201526a4c6f772062616c616e636560a81b604482015290519081900360640190fd5b61101261222b565b506001600160a01b038616600090815260086020908152604091829020825160a081018452815460ff161580158252600183015493820193909352600282015493810193909352600381015460608401526004015460808301526110a75760405162461bcd60e51b81526004018080602001828103825260248152602001806123406024913960400191505060405180910390fd5b4283116110fb576040805162461bcd60e51b815260206004820152601a60248201527f52656c656173652074696d65206e6f7420696e20667574757265000000000000604482015290519081900360640190fd5b6000611108878787611eb7565b9050611115338983611b13565b61112e33611129898463ffffffff611ed516565b611aa5565b6040805160a081019091526001815260208101611151898463ffffffff611ed516565b81526000602080830182905242604080850182905260609485018a90526001600160a01b038e1680855260088452938190208651815460ff191690151517815586840151600182015586820151600282015586860151600382015560809096015160049096019590955584518c815291820152808401889052925190927f3166bd2b07f10b6a010d45cdaf2b18484b24aafe1f62198ac7d94b13119f1f1992908290030190a25050505050505050565b60008060008061120f6119a7565b15611254576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b61125c61222b565b506001600160a01b038516600090815260086020908152604091829020825160a081018452815460ff161515808252600183015493820193909352600282015493810193909352600381015460608401526004015460808301526112cd5750600093508392508291508190506112eb565b80602001518160400151826060015183608001519450945094509450505b9193509193565b6112fa6119a7565b1561133f576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6001600160a01b038116331461138e576040805162461bcd60e51b815260206004820152600f60248201526e1058d8d95cdcc8191958db1a5b9959608a1b604482015290519081900360640190fd5b61139661222b565b506001600160a01b038116600090815260086020908152604091829020825160a081018452815460ff16151580825260018301549382019390935260028201549381019390935260038101546060840152600401546080830152611441576040805162461bcd60e51b815260206004820152601e60248201527f4e6f7468696e672076657374656420696e207468697320616464726573730000604482015290519081900360640190fd5b428160600151111561145357506116f9565b428160800151116115405780604001518160200151141561147457506116f9565b600061149182604001518360200151611ed590919063ffffffff16565b905061149d8382611f17565b6020828101805160408086019182526001600160a01b0387166000818152600886528290208751815460ff191690151517815593516001850181905592516002850181905560608089015160038701556080890151600490960195909555825193845294830194909452818101859052517f15d713e6ecdad54e8a756f8a82052a9af432b2ce48a7d3dbbe0c1ec503264e60929181900390910190a250506116f9565b600061159761156083606001518460800151611ed590919063ffffffff16565b61158b61157a856060015142611ed590919063ffffffff16565b60208601519063ffffffff611f4016565b9063ffffffff611f9916565b9050806115e4576040805162461bcd60e51b81526020600482015260166024820152754e6f7468696e6720746f2072656c65617365206e6f7760501b604482015290519081900360640190fd5b81604001518111611635576040805162461bcd60e51b81526020600482015260166024820152754e6f7468696e6720746f2072656c65617365206e6f7760501b604482015290519081900360640190fd5b600061164e836040015183611ed590919063ffffffff16565b905061165a8482611f17565b60408381018381526001600160a01b038616600081815260086020908152908490208751815460ff191690151517815581880151600182018190559351600282018190556060808a0151600384015560808a0151600490930192909255855194855291840191909152828401859052925190927f15d713e6ecdad54e8a756f8a82052a9af432b2ce48a7d3dbbe0c1ec503264e60928290030190a25050505b50565b60006117066119a7565b1561171357506000610c21565b506001600160a01b031660009081526020819052604090205490565b600082815260066020526040812061174d908363ffffffff611fdb16565b9392505050565b600082815260066020526040812061174d908363ffffffff611fe716565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063a5780601f1061060f5761010080835404028352916020019161063a565b600081565b60006117e26119a7565b15611827576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6106a66118326119b5565b84610bff85604051806060016040528060258152602001612426602591396001600061185c6119b5565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611c7a16565b600061189d6119a7565b156118e2576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6106a66118ed6119b5565b8484611b13565b60008181526006602052604081206106aa90611ffc565b600082815260066020526040902060020154611929906106be6119b5565b610ced5760405162461bcd60e51b81526004018080602001828103825260308152602001806123646030913960400191505060405180910390fd5b600061196e6119a7565b1561197b575060006106aa565b506001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600554610100900460ff1690565b3390565b6001600160a01b0383166119fe5760405162461bcd60e51b81526004018080602001828103825260248152602001806124026024913960400191505060405180910390fd5b6001600160a01b038216611a435760405162461bcd60e51b81526004018080602001828103825260228152602001806122d16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080518082018252600b81526a4c6f772062616c616e636560a81b6020808301919091526001600160a01b0385166000908152908190529190912054611af391839063ffffffff611c7a16565b6001600160a01b0390921660009081526020819052604090209190915550565b6001600160a01b038316611b585760405162461bcd60e51b81526004018080602001828103825260258152602001806123dd6025913960400191505060405180910390fd5b6001600160a01b038216611b9d5760405162461bcd60e51b815260040180806020018281038252602381526020018061227f6023913960400191505060405180910390fd5b611ba8838383612007565b611beb816040518060600160405280602681526020016122f3602691396001600160a01b038616600090815260208190526040902054919063ffffffff611c7a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611c20908263ffffffff611def16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611d095760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611cce578181015183820152602001611cb6565b50505050905090810190601f168015611cfb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828152600660205260409020611d2f908263ffffffff61200c16565b15610c8957611d3c6119b5565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600660205260409020611d9e908263ffffffff61202116565b15610c8957611dab6119b5565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60008282018381101561174d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600554610100900460ff1615611ea6576040805162461bcd60e51b815260206004820152601860248201527f416c7265616479206275726e742065766572797468696e670000000000000000604482015290519081900360640190fd5b6005805461ff001916610100179055565b6000611ecd8261158b868663ffffffff611f4016565b949350505050565b600061174d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c7a565b6001600160a01b038216600090815260208190526040902054611af3908263ffffffff611def16565b600082611f4f575060006106aa565b82820282848281611f5c57fe5b041461174d5760405162461bcd60e51b81526004018080602001828103825260218152602001806123946021913960400191505060405180910390fd5b600061174d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612036565b600061174d838361209b565b600061174d836001600160a01b0384166120ff565b60006106aa82612117565b505050565b600061174d836001600160a01b03841661211b565b600061174d836001600160a01b038416612165565b600081836120855760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611cce578181015183820152602001611cb6565b50600083858161209157fe5b0495945050505050565b815460009082106120dd5760405162461bcd60e51b815260040180806020018281038252602281526020018061225d6022913960400191505060405180910390fd5b8260000182815481106120ec57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600061212783836120ff565b61215d575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556106aa565b5060006106aa565b60008181526001830160205260408120548015612221578354600019808301919081019060009087908390811061219857fe5b90600052602060002001549050808760000184815481106121b557fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806121e557fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506106aa565b60009150506106aa565b6040518060a0016040528060001515815260200160008152602001600081526020016000815260200160008152509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636552656c656173652074696d65203e207374617274696e672074696d65206f662076657374696e6756657374696e67206e6f7420706f737369626c6520696e20746869732061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220da1d52a9adb111a1bb66f9348272ac9e211fe6ec3c98c7a1d7aab448c077b00864736f6c63430006060033416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004427573790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044255535900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80636b2d95d4116100de578063a217fddf11610097578063ca15c87311610071578063ca15c8731461052f578063d547741f1461054c578063dd62ed3e14610578578063ea79ebfe146105a657610173565b8063a217fddf146104cf578063a457c2d7146104d7578063a9059cbb1461050357610173565b80636b2d95d4146103c45780636bb619301461041057806370a08231146104365780639010d07c1461045c57806391d148541461049b57806395d89b41146104c757610173565b80632f2ff15d116101305780632f2ff15d146102dc578063313ce5671461030857806336568abe14610326578063395093511461035257806344df8e701461037e5780634b8e47071461038657610173565b806306fdde0314610178578063095ea7b3146101f5578063162d3ec01461023557806318160ddd1461026f57806323b872dd14610289578063248a9ca3146102bf575b600080fd5b6101806105ae565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b038135169060200135610645565b604080519115158252519081900360200190f35b61026d6004803603608081101561024b57600080fd5b506001600160a01b0381351690602081013590604081013590606001356106b0565b005b610277610b16565b60408051918252519081900360200190f35b6102216004803603606081101561029f57600080fd5b506001600160a01b03813581169160208101359091169060400135610b34565b610277600480360360208110156102d557600080fd5b5035610c0e565b61026d600480360360408110156102f257600080fd5b50803590602001356001600160a01b0316610c26565b610310610c8d565b6040805160ff9092168252519081900360200190f35b61026d6004803603604081101561033c57600080fd5b50803590602001356001600160a01b0316610c96565b6102216004803603604081101561036857600080fd5b506001600160a01b038135169060200135610cf7565b61026d610d98565b61026d600480360360a081101561039c57600080fd5b506001600160a01b038135169060208101359060408101359060608101359060800135610e64565b6103ea600480360360208110156103da57600080fd5b50356001600160a01b0316611201565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61026d6004803603602081101561042657600080fd5b50356001600160a01b03166112f2565b6102776004803603602081101561044c57600080fd5b50356001600160a01b03166116fc565b61047f6004803603604081101561047257600080fd5b508035906020013561172f565b604080516001600160a01b039092168252519081900360200190f35b610221600480360360408110156104b157600080fd5b50803590602001356001600160a01b0316611754565b610180611772565b6102776117d3565b610221600480360360408110156104ed57600080fd5b506001600160a01b0381351690602001356117d8565b6102216004803603604081101561051957600080fd5b506001600160a01b038135169060200135611893565b6102776004803603602081101561054557600080fd5b50356118f4565b61026d6004803603604081101561056257600080fd5b50803590602001356001600160a01b031661190b565b6102776004803603604081101561058e57600080fd5b506001600160a01b0381358116916020013516611964565b6102216119a7565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063a5780601f1061060f5761010080835404028352916020019161063a565b820191906000526020600020905b81548152906001019060200180831161061d57829003601f168201915b505050505090505b90565b600061064f6119a7565b15610694576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6106a661069f6119b5565b84846119b9565b5060015b92915050565b60006106c3816106be6119b5565b611754565b6007906107635760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b50509250505060405180910390fd5b5061076c6119a7565b156107b1576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6001600160a01b038516610804576040805162461bcd60e51b815260206004820152601560248201527442616420726563697069656e74206164647265737360581b604482015290519081900360640190fd5b8361084b576040805162461bcd60e51b8152602060048201526012602482015271109859081d995cdd1a5b99c8185b5bdd5b9d60721b604482015290519081900360640190fd5b83610855336116fc565b11610895576040805162461bcd60e51b815260206004820152600b60248201526a4c6f772062616c616e636560a81b604482015290519081900360640190fd5b61089d61222b565b506001600160a01b038516600090815260086020908152604091829020825160a081018452815460ff161580158252600183015493820193909352600282015493810193909352600381015460608401526004015460808301526109325760405162461bcd60e51b81526004018080602001828103825260248152602001806123406024913960400191505060405180910390fd5b428411610986576040805162461bcd60e51b815260206004820152601b60248201527f5374617274696e672074696d65206e6f7420696e206675747572650000000000604482015290519081900360640190fd5b4283116109da576040805162461bcd60e51b815260206004820152601a60248201527f52656c656173652074696d65206e6f7420696e20667574757265000000000000604482015290519081900360640190fd5b828410610a185760405162461bcd60e51b81526004018080602001828103825260278152602001806123196027913960400191505060405180910390fd5b610a223386611aa5565b6040518060a00160405280600115158152602001868152602001600081526020018581526020018481525060086000886001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160010155604082015181600201556060820151816003015560808201518160040155905050856001600160a01b03167f3166bd2b07f10b6a010d45cdaf2b18484b24aafe1f62198ac7d94b13119f1f1986868660405180848152602001838152602001828152602001935050505060405180910390a2505050505050565b6000610b206119a7565b15610b2d57506000610642565b5060025490565b6000610b3e6119a7565b15610b83576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b610b8e848484611b13565b610c0484610b9a6119b5565b610bff856040518060600160405280602881526020016123b5602891396001600160a01b038a16600090815260016020526040812090610bd86119b5565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611c7a16565b6119b9565b5060019392505050565b6000818152600660205260409020600201545b919050565b600082815260066020526040902060020154610c44906106be6119b5565b610c7f5760405162461bcd60e51b815260040180806020018281038252602f8152602001806122a2602f913960400191505060405180910390fd5b610c898282611d11565b5050565b60055460ff1690565b610c9e6119b5565b6001600160a01b0316816001600160a01b031614610ced5760405162461bcd60e51b815260040180806020018281038252602f81526020018061244b602f913960400191505060405180910390fd5b610c898282611d80565b6000610d016119a7565b15610d46576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6106a6610d516119b5565b84610bff8560016000610d626119b5565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611def16565b6000610da6816106be6119b5565b600790610e0c5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156107545780601f1061072957610100808354040283529160200191610754565b50610e15611e49565b7f919f7e2092ffcc9d09f599be18d8152860b0c054df788a33bc549cdd9d0f15b133610e3f610b16565b604080516001600160a01b03909316835260208301919091528051918290030190a150565b6000610e72816106be6119b5565b600790610ed85760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156107545780601f1061072957610100808354040283529160200191610754565b50610ee16119a7565b15610f26576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6001600160a01b038616610f79576040805162461bcd60e51b815260206004820152601560248201527442616420726563697069656e74206164647265737360581b604482015290519081900360640190fd5b84610fc0576040805162461bcd60e51b8152602060048201526012602482015271109859081d995cdd1a5b99c8185b5bdd5b9d60721b604482015290519081900360640190fd5b84610fca336116fc565b1161100a576040805162461bcd60e51b815260206004820152600b60248201526a4c6f772062616c616e636560a81b604482015290519081900360640190fd5b61101261222b565b506001600160a01b038616600090815260086020908152604091829020825160a081018452815460ff161580158252600183015493820193909352600282015493810193909352600381015460608401526004015460808301526110a75760405162461bcd60e51b81526004018080602001828103825260248152602001806123406024913960400191505060405180910390fd5b4283116110fb576040805162461bcd60e51b815260206004820152601a60248201527f52656c656173652074696d65206e6f7420696e20667574757265000000000000604482015290519081900360640190fd5b6000611108878787611eb7565b9050611115338983611b13565b61112e33611129898463ffffffff611ed516565b611aa5565b6040805160a081019091526001815260208101611151898463ffffffff611ed516565b81526000602080830182905242604080850182905260609485018a90526001600160a01b038e1680855260088452938190208651815460ff191690151517815586840151600182015586820151600282015586860151600382015560809096015160049096019590955584518c815291820152808401889052925190927f3166bd2b07f10b6a010d45cdaf2b18484b24aafe1f62198ac7d94b13119f1f1992908290030190a25050505050505050565b60008060008061120f6119a7565b15611254576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b61125c61222b565b506001600160a01b038516600090815260086020908152604091829020825160a081018452815460ff161515808252600183015493820193909352600282015493810193909352600381015460608401526004015460808301526112cd5750600093508392508291508190506112eb565b80602001518160400151826060015183608001519450945094509450505b9193509193565b6112fa6119a7565b1561133f576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6001600160a01b038116331461138e576040805162461bcd60e51b815260206004820152600f60248201526e1058d8d95cdcc8191958db1a5b9959608a1b604482015290519081900360640190fd5b61139661222b565b506001600160a01b038116600090815260086020908152604091829020825160a081018452815460ff16151580825260018301549382019390935260028201549381019390935260038101546060840152600401546080830152611441576040805162461bcd60e51b815260206004820152601e60248201527f4e6f7468696e672076657374656420696e207468697320616464726573730000604482015290519081900360640190fd5b428160600151111561145357506116f9565b428160800151116115405780604001518160200151141561147457506116f9565b600061149182604001518360200151611ed590919063ffffffff16565b905061149d8382611f17565b6020828101805160408086019182526001600160a01b0387166000818152600886528290208751815460ff191690151517815593516001850181905592516002850181905560608089015160038701556080890151600490960195909555825193845294830194909452818101859052517f15d713e6ecdad54e8a756f8a82052a9af432b2ce48a7d3dbbe0c1ec503264e60929181900390910190a250506116f9565b600061159761156083606001518460800151611ed590919063ffffffff16565b61158b61157a856060015142611ed590919063ffffffff16565b60208601519063ffffffff611f4016565b9063ffffffff611f9916565b9050806115e4576040805162461bcd60e51b81526020600482015260166024820152754e6f7468696e6720746f2072656c65617365206e6f7760501b604482015290519081900360640190fd5b81604001518111611635576040805162461bcd60e51b81526020600482015260166024820152754e6f7468696e6720746f2072656c65617365206e6f7760501b604482015290519081900360640190fd5b600061164e836040015183611ed590919063ffffffff16565b905061165a8482611f17565b60408381018381526001600160a01b038616600081815260086020908152908490208751815460ff191690151517815581880151600182018190559351600282018190556060808a0151600384015560808a0151600490930192909255855194855291840191909152828401859052925190927f15d713e6ecdad54e8a756f8a82052a9af432b2ce48a7d3dbbe0c1ec503264e60928290030190a25050505b50565b60006117066119a7565b1561171357506000610c21565b506001600160a01b031660009081526020819052604090205490565b600082815260066020526040812061174d908363ffffffff611fdb16565b9392505050565b600082815260066020526040812061174d908363ffffffff611fe716565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063a5780601f1061060f5761010080835404028352916020019161063a565b600081565b60006117e26119a7565b15611827576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6106a66118326119b5565b84610bff85604051806060016040528060258152602001612426602591396001600061185c6119b5565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611c7a16565b600061189d6119a7565b156118e2576040805162461bcd60e51b815260206004820152601060248201526f115d995c9e5d1a1a5b99c8189d5c9b9d60821b604482015290519081900360640190fd5b6106a66118ed6119b5565b8484611b13565b60008181526006602052604081206106aa90611ffc565b600082815260066020526040902060020154611929906106be6119b5565b610ced5760405162461bcd60e51b81526004018080602001828103825260308152602001806123646030913960400191505060405180910390fd5b600061196e6119a7565b1561197b575060006106aa565b506001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600554610100900460ff1690565b3390565b6001600160a01b0383166119fe5760405162461bcd60e51b81526004018080602001828103825260248152602001806124026024913960400191505060405180910390fd5b6001600160a01b038216611a435760405162461bcd60e51b81526004018080602001828103825260228152602001806122d16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080518082018252600b81526a4c6f772062616c616e636560a81b6020808301919091526001600160a01b0385166000908152908190529190912054611af391839063ffffffff611c7a16565b6001600160a01b0390921660009081526020819052604090209190915550565b6001600160a01b038316611b585760405162461bcd60e51b81526004018080602001828103825260258152602001806123dd6025913960400191505060405180910390fd5b6001600160a01b038216611b9d5760405162461bcd60e51b815260040180806020018281038252602381526020018061227f6023913960400191505060405180910390fd5b611ba8838383612007565b611beb816040518060600160405280602681526020016122f3602691396001600160a01b038616600090815260208190526040902054919063ffffffff611c7a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611c20908263ffffffff611def16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611d095760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611cce578181015183820152602001611cb6565b50505050905090810190601f168015611cfb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828152600660205260409020611d2f908263ffffffff61200c16565b15610c8957611d3c6119b5565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600660205260409020611d9e908263ffffffff61202116565b15610c8957611dab6119b5565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60008282018381101561174d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600554610100900460ff1615611ea6576040805162461bcd60e51b815260206004820152601860248201527f416c7265616479206275726e742065766572797468696e670000000000000000604482015290519081900360640190fd5b6005805461ff001916610100179055565b6000611ecd8261158b868663ffffffff611f4016565b949350505050565b600061174d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c7a565b6001600160a01b038216600090815260208190526040902054611af3908263ffffffff611def16565b600082611f4f575060006106aa565b82820282848281611f5c57fe5b041461174d5760405162461bcd60e51b81526004018080602001828103825260218152602001806123946021913960400191505060405180910390fd5b600061174d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612036565b600061174d838361209b565b600061174d836001600160a01b0384166120ff565b60006106aa82612117565b505050565b600061174d836001600160a01b03841661211b565b600061174d836001600160a01b038416612165565b600081836120855760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611cce578181015183820152602001611cb6565b50600083858161209157fe5b0495945050505050565b815460009082106120dd5760405162461bcd60e51b815260040180806020018281038252602281526020018061225d6022913960400191505060405180910390fd5b8260000182815481106120ec57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600061212783836120ff565b61215d575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556106aa565b5060006106aa565b60008181526001830160205260408120548015612221578354600019808301919081019060009087908390811061219857fe5b90600052602060002001549050808760000184815481106121b557fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806121e557fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506106aa565b60009150506106aa565b6040518060a0016040528060001515815260200160008152602001600081526020016000815260200160008152509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636552656c656173652074696d65203e207374617274696e672074696d65206f662076657374696e6756657374696e67206e6f7420706f737369626c6520696e20746869732061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220da1d52a9adb111a1bb66f9348272ac9e211fe6ec3c98c7a1d7aab448c077b00864736f6c63430006060033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004427573790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044255535900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Busy
Arg [1] : symbol_ (string): BUSY

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 4275737900000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4255535900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37503:6063:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;37503:6063:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;29433:83:0;;;:::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;29433:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31822:241;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;31822:241:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40593:957;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;40593:957:0;;;;;;;;;;;;;;;;;;:::i;:::-;;30508:171;;;:::i;:::-;;;;;;;;;;;;;;;;32537:393;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;32537:393:0;;;;;;;;;;;;;;;;;:::i;10802:114::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10802:114:0;;:::i;11178:227::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;11178:227:0;;;;;;-1:-1:-1;;;;;11178:227:0;;:::i;30360:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12387:209;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12387:209:0;;;;;;-1:-1:-1;;;;;12387:209:0;;:::i;33339:290::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;33339:290:0;;;;;;;;:::i;43425:138::-;;;:::i;39584:997::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;39584:997:0;;;;;;;;;;;;;;;;;;;;;;;:::i;41562:422::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41562:422:0;-1:-1:-1;;;;;41562:422:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41990:1423;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41990:1423:0;-1:-1:-1;;;;;41990:1423:0;;:::i;30742:190::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30742:190:0;-1:-1:-1;;;;;30742:190:0;;:::i;10475:138::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10475:138:0;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;10475:138:0;;;;;;;;;;;;;;9748:139;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;9748:139:0;;;;;;-1:-1:-1;;;;;9748:139:0;;:::i;29635:87::-;;;:::i;8493:49::-;;;:::i;34132:341::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;34132:341:0;;;;;;;;:::i;31145:247::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;31145:247:0;;;;;;;;:::i;10061:127::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10061:127:0;;:::i;11650:230::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;11650:230:0;;;;;;-1:-1:-1;;;;;11650:230:0;;:::i;31455:220::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;31455:220:0;;;;;;;;;;:::i;37145:80::-;;;:::i;29433:83::-;29503:5;29496:12;;;;;;;;-1:-1:-1;;29496:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29470:13;;29496:12;;29503:5;;29496:12;;29503:5;29496:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29433:83;;:::o;31822:241::-;31905:4;31941:9;:7;:9::i;:::-;31940:10;31932:39;;;;;-1:-1:-1;;;31932:39:0;;;;;;;;;;;;-1:-1:-1;;;31932:39:0;;;;;;;;;;;;;;;31992;32001:12;:10;:12::i;:::-;32015:7;32024:6;31992:8;:39::i;:::-;-1:-1:-1;32049:4:0;31822:241;;;;;:::o;40593:957::-;8538:4;14365:27;8538:4;14379:12;:10;:12::i;:::-;14365:7;:27::i;:::-;14407:10;14343:85;;;;;-1:-1:-1;;;14343:85:0;;;;;;;;;;;;-1:-1:-1;;14343:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40761:9:::1;:7;:9::i;:::-;40760:10;40752:39;;;::::0;;-1:-1:-1;;;40752:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40752:39:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40812:23:0;::::1;40804:57;;;::::0;;-1:-1:-1;;;40804:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40804:57:0;;;;;;;;;;;;;::::1;;40880:11:::0;40872:42:::1;;;::::0;;-1:-1:-1;;;40872:42:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40872:42:0;;;;;;;;;;;;;::::1;;40957:6;40933:21;40943:10;40933:9;:21::i;:::-;:30;40925:54;;;::::0;;-1:-1:-1;;;40925:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40925:54:0;;;;;;;;;;;;;::::1;;41000:25;;:::i;:::-;-1:-1:-1::0;;;;;;41028:24:0;::::1;;::::0;;;:13:::1;:24;::::0;;;;;;;;41000:52;;::::1;::::0;::::1;::::0;;;;::::1;;;::::0;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;::::1;::::0;;;;;::::1;;::::0;;;;;41063:62:::1;;;;-1:-1:-1::0;;;41063:62:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41154:3;41144:7;:13;41136:53;;;::::0;;-1:-1:-1;;;41136:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41220:3;41208:9;:15;41200:54;;;::::0;;-1:-1:-1;;;41200:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41283:9;41273:7;:19;41265:71;;;;-1:-1:-1::0;;;41265:71:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41349:39;41369:10;41381:6;41349:19;:39::i;:::-;41428:49;;;;;;;;41441:4;41428:49;;;;;;41447:6;41428:49;;;;41455:1;41428:49;;;;41458:7;41428:49;;;;41467:9;41428:49;;::::0;41401:13:::1;:24;41415:9;-1:-1:-1::0;;;;;41401:24:0::1;-1:-1:-1::0;;;;;41401:24:0::1;;;;;;;;;;;;:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41502:9;-1:-1:-1::0;;;;;41495:45:0::1;;41513:6;41521:7;41530:9;41495:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14439:1;40593:957:::0;;;;;:::o;30508:171::-;30561:7;30584:9;:7;:9::i;:::-;30581:49;;;-1:-1:-1;30617:1:0;30610:8;;30581:49;-1:-1:-1;30657:12:0;;30508:171;:::o;32537:393::-;32643:4;32679:9;:7;:9::i;:::-;32678:10;32670:39;;;;;-1:-1:-1;;;32670:39:0;;;;;;;;;;;;-1:-1:-1;;;32670:39:0;;;;;;;;;;;;;;;32730:36;32740:6;32748:9;32759:6;32730:9;:36::i;:::-;32777:121;32786:6;32794:12;:10;:12::i;:::-;32808:89;32846:6;32808:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32808:19:0;;;;;;:11;:19;;;;;;32828:12;:10;:12::i;:::-;-1:-1:-1;;;;;32808:33:0;;;;;;;;;;;;-1:-1:-1;32808:33:0;;;:89;;:37;:89;:::i;:::-;32777:8;:121::i;:::-;-1:-1:-1;32916:4:0;32537:393;;;;;:::o;10802:114::-;10859:7;10886:12;;;:6;:12;;;;;:22;;;10802:114;;;;:::o;11178:227::-;11270:12;;;;:6;:12;;;;;:22;;;11262:45;;11294:12;:10;:12::i;11262:45::-;11254:105;;;;-1:-1:-1;;;11254:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11372:25;11383:4;11389:7;11372:10;:25::i;:::-;11178:227;;:::o;30360:83::-;30426:9;;;;30360:83;:::o;12387:209::-;12485:12;:10;:12::i;:::-;-1:-1:-1;;;;;12474:23:0;:7;-1:-1:-1;;;;;12474:23:0;;12466:83;;;;-1:-1:-1;;;12466:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12562:26;12574:4;12580:7;12562:11;:26::i;33339:290::-;33427:4;33463:9;:7;:9::i;:::-;33462:10;33454:39;;;;;-1:-1:-1;;;33454:39:0;;;;;;;;;;;;-1:-1:-1;;;33454:39:0;;;;;;;;;;;;;;;33514:83;33523:12;:10;:12::i;:::-;33537:7;33546:50;33585:10;33546:11;:25;33558:12;:10;:12::i;:::-;-1:-1:-1;;;;;33546:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;33546:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;43425:138::-;8538:4;14365:27;8538:4;14379:12;:10;:12::i;14365:27::-;14407:10;14343:85;;;;;-1:-1:-1;;;14343:85:0;;;;;;;;;;;;-1:-1:-1;;14343:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43486:11:::1;:9;:11::i;:::-;43523:32;43529:10;43541:13;:11;:13::i;:::-;43523:32;::::0;;-1:-1:-1;;;;;43523:32:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;43425:138:::0;:::o;39584:997::-;8538:4;14365:27;8538:4;14379:12;:10;:12::i;14365:27::-;14407:10;14343:85;;;;;-1:-1:-1;;;14343:85:0;;;;;;;;;;;;-1:-1:-1;;14343:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39777:9:::1;:7;:9::i;:::-;39776:10;39768:39;;;::::0;;-1:-1:-1;;;39768:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;39768:39:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;39828:23:0;::::1;39820:57;;;::::0;;-1:-1:-1;;;39820:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;39820:57:0;;;;;;;;;;;;;::::1;;39896:11:::0;39888:42:::1;;;::::0;;-1:-1:-1;;;39888:42:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;39888:42:0;;;;;;;;;;;;;::::1;;39973:6;39949:21;39959:10;39949:9;:21::i;:::-;:30;39941:54;;;::::0;;-1:-1:-1;;;39941:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;39941:54:0;;;;;;;;;;;;;::::1;;40016:25;;:::i;:::-;-1:-1:-1::0;;;;;;40044:24:0;::::1;;::::0;;;:13:::1;:24;::::0;;;;;;;;40016:52;;::::1;::::0;::::1;::::0;;;;::::1;;;::::0;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;::::1;::::0;;;;;::::1;;::::0;;;;;40079:62:::1;;;;-1:-1:-1::0;;;40079:62:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40172:3;40160:9;:15;40152:54;;;::::0;;-1:-1:-1;;;40152:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40219:15;40237:52;40258:6;40266:9;40277:11;40237:20;:52::i;:::-;40219:70;;40310:41;40320:10;40332:9;40343:7;40310:9;:41::i;:::-;40364:52;40384:10;40396:19;:6:::0;40407:7;40396:19:::1;:10;:19;:::i;:::-;40364;:52::i;:::-;40456:58;::::0;;::::1;::::0;::::1;::::0;;;40469:4:::1;40456:58:::0;;::::1;::::0;::::1;40475:19;:6:::0;40486:7;40475:19:::1;:10;:19;:::i;:::-;40456:58:::0;;40496:1:::1;40456:58;::::0;;::::1;::::0;;;40499:3:::1;40456:58:::0;;;;;;;;;;;;;;-1:-1:-1;;;;;40429:24:0;::::1;::::0;;;:13:::1;:24:::0;;;;;;:85;;;;-1:-1:-1;;40429:85:0::1;::::0;::::1;;;::::0;;;;::::1;::::0;-1:-1:-1;40429:85:0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;40530:41;;;;;;;::::1;::::0;;;;;;;;;40429:24;;40530:41:::1;::::0;;;;;;;::::1;14439:1;;39584:997:::0;;;;;;:::o;41562:422::-;41624:7;41633;41642;41651;41690:9;:7;:9::i;:::-;41689:10;41681:39;;;;;-1:-1:-1;;;41681:39:0;;;;;;;;;;;;-1:-1:-1;;;41681:39:0;;;;;;;;;;;;;;;41741:25;;:::i;:::-;-1:-1:-1;;;;;;41769:20:0;;;;;;:13;:20;;;;;;;;;41741:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41800:64;;-1:-1:-1;41841:1:0;;-1:-1:-1;41841:1:0;;-1:-1:-1;41841:1:0;;-1:-1:-1;41841:1:0;;-1:-1:-1;41833:19:0;;41800:64;41892:5;:17;;;41911:5;:20;;;41933:5;:15;;;41950:5;:15;;;41884:82;;;;;;;;;41562:422;;;;;;:::o;41990:1423::-;42067:9;:7;:9::i;:::-;42066:10;42058:39;;;;;-1:-1:-1;;;42058:39:0;;;;;;;;;;;;-1:-1:-1;;;42058:39:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42118:19:0;;42127:10;42118:19;42110:47;;;;;-1:-1:-1;;;42110:47:0;;;;;;;;;;;;-1:-1:-1;;;42110:47:0;;;;;;;;;;;;;;;42170:25;;:::i;:::-;-1:-1:-1;;;;;;42198:20:0;;;;;;:13;:20;;;;;;;;;42170:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42229:55;;;;;-1:-1:-1;;;42229:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;42328:3;42310:5;:15;;;:21;42307:37;;;42335:7;;;42307:37;42376:3;42357:5;:15;;;:22;42354:494;;42420:5;:20;;;42399:5;:17;;;:41;42396:57;;;42444:7;;;42396:57;42481:18;42502:43;42524:5;:20;;;42502:5;:17;;;:21;;:43;;;;:::i;:::-;42481:64;;42574:44;42600:5;42607:10;42574:25;:44::i;:::-;42656:17;;;;;;42633:20;;;;:40;;;-1:-1:-1;;;;;42688:20:0;;-1:-1:-1;42688:20:0;;;:13;:20;;;;;:28;;;;-1:-1:-1;;42688:28:0;;;;;;;;;-1:-1:-1;42688:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42736:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42828:7;;;;42354:494;42858:18;42879:89;42931:36;42951:5;:15;;;42931:5;:15;;;:19;;:36;;;;:::i;:::-;42879:47;42901:24;42909:5;:15;;;42901:3;:7;;:24;;;;:::i;:::-;42879:17;;;;;:47;:21;:47;:::i;:::-;:51;:89;:51;:89;:::i;:::-;42858:110;-1:-1:-1;42987:15:0;42979:50;;;;;-1:-1:-1;;;42979:50:0;;;;;;;;;;;;-1:-1:-1;;;42979:50:0;;;;;;;;;;;;;;;43061:5;:20;;;43048:10;:33;43040:68;;;;;-1:-1:-1;;;43040:68:0;;;;;;;;;;;;-1:-1:-1;;;43040:68:0;;;;;;;;;;;;;;;43119:18;43140:36;43155:5;:20;;;43140:10;:14;;:36;;;;:::i;:::-;43119:57;;43187:44;43213:5;43220:10;43187:25;:44::i;:::-;43242:20;;;;:33;;;-1:-1:-1;;;;;43286:20:0;;;;;;:13;:20;;;;;;;;:28;;;;-1:-1:-1;;43286:28:0;;;;;;;;;;;-1:-1:-1;43286:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43330:75;;;;;;;;;;;;;;;;;;;;43286:20;;43330:75;;;;;;;;41990:1423;;;;;:::o;30742:190::-;30808:7;30831:9;:7;:9::i;:::-;30828:49;;;-1:-1:-1;30864:1:0;30857:8;;30828:49;-1:-1:-1;;;;;;30904:18:0;:9;:18;;;;;;;;;;;;30742:190::o;10475:138::-;10548:7;10575:12;;;:6;:12;;;;;:30;;10599:5;10575:30;:23;:30;:::i;:::-;10568:37;10475:138;-1:-1:-1;;;10475:138:0:o;9748:139::-;9817:4;9841:12;;;:6;:12;;;;;:38;;9871:7;9841:38;:29;:38;:::i;29635:87::-;29707:7;29700:14;;;;;;;;-1:-1:-1;;29700:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29674:13;;29700:14;;29707:7;;29700:14;;29707:7;29700:14;;;;;;;;;;;;;;;;;;;;;;;;8493:49;8538:4;8493:49;:::o;34132:341::-;34225:4;34261:9;:7;:9::i;:::-;34260:10;34252:39;;;;;-1:-1:-1;;;34252:39:0;;;;;;;;;;;;-1:-1:-1;;;34252:39:0;;;;;;;;;;;;;;;34312:129;34321:12;:10;:12::i;:::-;34335:7;34344:96;34383:15;34344:96;;;;;;;;;;;;;;;;;:11;:25;34356:12;:10;:12::i;:::-;-1:-1:-1;;;;;34344:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;34344:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;31145:247::-;31231:4;31267:9;:7;:9::i;:::-;31266:10;31258:39;;;;;-1:-1:-1;;;31258:39:0;;;;;;;;;;;;-1:-1:-1;;;31258:39:0;;;;;;;;;;;;;;;31318:42;31328:12;:10;:12::i;:::-;31342:9;31353:6;31318:9;:42::i;10061:127::-;10124:7;10151:12;;;:6;:12;;;;;:29;;:27;:29::i;11650:230::-;11743:12;;;;:6;:12;;;;;:22;;;11735:45;;11767:12;:10;:12::i;11735:45::-;11727:106;;;;-1:-1:-1;;;11727:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31455:220;31544:7;31567:9;:7;:9::i;:::-;31564:49;;;-1:-1:-1;31600:1:0;31593:8;;31564:49;-1:-1:-1;;;;;;31640:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31455:220::o;37145:80::-;37208:9;;;;;;;;37145:80::o;605:106::-;693:10;605:106;:::o;36689:346::-;-1:-1:-1;;;;;36791:19:0;;36783:68;;;;-1:-1:-1;;;36783:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36870:21:0;;36862:68;;;;-1:-1:-1;;;36862:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36943:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36995:32;;;;;;;;;;;;;;;;;36689:346;;;:::o;35514:176::-;35627:45;;;;;;;;;;;-1:-1:-1;;;35627:45:0;;;;;;;;-1:-1:-1;;;;;35627:18:0;;-1:-1:-1;35627:18:0;;;;;;;;;;;;:45;;35650:6;;35627:45;:22;:45;:::i;:::-;-1:-1:-1;;;;;35606:18:0;;;:9;:18;;;;;;;;;;:66;;;;-1:-1:-1;35514:176:0:o;34963:539::-;-1:-1:-1;;;;;35069:20:0;;35061:70;;;;-1:-1:-1;;;35061:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35150:23:0;;35142:71;;;;-1:-1:-1;;;35142:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35226:47;35247:6;35255:9;35266:6;35226:20;:47::i;:::-;35306:71;35328:6;35306:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35306:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;35286:17:0;;;:9;:17;;;;;;;;;;;:91;;;;35411:20;;;;;;;:32;;35436:6;35411:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;35388:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;35459:35;;;;;;;35388:20;;35459:35;;;;;;;;;;;;;34963:539;;;:::o;19035:192::-;19121:7;19157:12;19149:6;;;;19141:29;;;;-1:-1:-1;;;19141: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;19141:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;19193:5:0;;;19035:192::o;13630:188::-;13704:12;;;;:6;:12;;;;;:33;;13729:7;13704:33;:24;:33;:::i;:::-;13700:111;;;13786:12;:10;:12::i;:::-;-1:-1:-1;;;;;13759:40:0;13777:7;-1:-1:-1;;;;;13759:40:0;13771:4;13759:40;;;;;;;;;;13630:188;;:::o;13826:192::-;13901:12;;;;:6;:12;;;;;:36;;13929:7;13901:36;:27;:36;:::i;:::-;13897:114;;;13986:12;:10;:12::i;:::-;-1:-1:-1;;;;;13959:40:0;13977:7;-1:-1:-1;;;;;13959:40:0;13971:4;13959:40;;;;;;;;;;13826:192;;:::o;18132:181::-;18190:7;18222:5;;;18246:6;;;;18238:46;;;;;-1:-1:-1;;;18238:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;37237:133;37287:9;;;;;;;37286:10;37278:47;;;;;-1:-1:-1;;;37278:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37346:9;:16;;-1:-1:-1;;37346:16:0;;;;;37237:133::o;38730:192::-;38838:7;38867:37;38892:11;38867:20;:5;38877:9;38867:20;:9;:20;:::i;:37::-;38860:44;38730:192;-1:-1:-1;;;;38730:192:0:o;18596:136::-;18654:7;18681:43;18685:1;18688;18681:43;;;;;;;;;;;;;;;;;:3;:43::i;35702:167::-;-1:-1:-1;;;;;35821:18:0;;:9;:18;;;;;;;;;;;:30;;35844:6;35821:30;:22;:30;:::i;19486:390::-;19544:7;19708:6;19704:47;;-1:-1:-1;19738:1:0;19731:8;;19704:47;19775:5;;;19779:1;19775;:5;:1;19799:5;;;;;:10;19791:56;;;;-1:-1:-1;;;19791:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20352:132;20410:7;20437:39;20441:1;20444;20437:39;;;;;;;;;;;;;;;;;:3;:39::i;6455:149::-;6529:7;6572:22;6576:3;6588:5;6572:3;:22::i;5750:158::-;5830:4;5854:46;5864:3;-1:-1:-1;;;;;5884:14:0;;5854:9;:46::i;5994:117::-;6057:7;6084:19;6092:3;6084:7;:19::i;37378:92::-;;;;:::o;5196:143::-;5266:4;5290:41;5295:3;-1:-1:-1;;;;;5315:14:0;;5290:4;:41::i;5515:149::-;5588:4;5612:44;5620:3;-1:-1:-1;;;;;5640:14:0;;5612:7;:44::i;20980:278::-;21066:7;21101:12;21094:5;21086:28;;;;-1:-1:-1;;;21086:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;21086:28:0;;21125:9;21141:1;21137;:5;;;;;;;20980:278;-1:-1:-1;;;;;20980:278:0:o;4759:204::-;4854:18;;4826:7;;4854:26;-1:-1:-1;4846:73:0;;;;-1:-1:-1;;;4846:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4937:3;:11;;4949:5;4937:18;;;;;;;;;;;;;;;;4930:25;;4759:204;;;;:::o;4091:129::-;4164:4;4188:19;;;:12;;;;;:19;;;;;;:24;;;4091:129::o;4306:109::-;4389:18;;4306:109::o;1871:414::-;1934:4;1956:21;1966:3;1971:5;1956:9;:21::i;:::-;1951:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;1994:11:0;:23;;;;;;;;;;;;;2177:18;;2155:19;;;:12;;;:19;;;;;;:40;;;;2210:11;;1951:327;-1:-1:-1;2261:5:0;2254:12;;2461:1544;2527:4;2666:19;;;:12;;;:19;;;;;;2702:15;;2698:1300;;3137:18;;-1:-1:-1;;3088:14:0;;;;3137:22;;;;3064:21;;3137:3;;:22;;3424;;;;;;;;;;;;;;3404:42;;3570:9;3541:3;:11;;3553:13;3541:26;;;;;;;;;;;;;;;;;;;:38;;;;3647:23;;;3689:1;3647:12;;;:23;;;;;;3673:17;;;3647:43;;3799:17;;3647:3;;3799:17;;;;;;;;;;;;;;;;;;;;;;3894:3;:12;;:19;3907:5;3894:19;;;;;;;;;;;3887:26;;;3937:4;3930:11;;;;;;;;2698:1300;3981:5;3974:12;;;;;37503:6063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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