ETH Price: $2,506.97 (-0.73%)

Token

xVEMP (xVEMP)
 

Overview

Max Total Supply

31,035,626.65598206356869988 xVEMP

Holders

253

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
12,678.441076020453053333 xVEMP

Value
$0.00
0xf28143c90945d292a76bd00c9b54c47cae0c2463
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
xVEMPBEP20Token

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-06
*/

// SPDX-License-Identifier: MIT

pragma solidity =0.6.12;
pragma experimental ABIEncoderV2;


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

//

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

// 
/**
 * @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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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;
    }
}

// 
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

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

    bool private _paused;

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

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

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

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

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

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

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

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual whenPaused {
        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);
        
        _moveDelegates(delegates[sender], delegates[recipient], amount);
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }
    
    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "xVemp::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "xVemp::delegateBySig: invalid nonce");
        require(now <= expiry, "xVemp::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint256) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint256) {
        require(blockNumber < block.number, "xVemp::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint256 delegatorBalance = uint256(_balances[delegator]);
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }
    
    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = sub96(srcRepOld, amount, "xVemp::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = add96(dstRepOld, amount, "xVemp::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes) internal {
      uint32 blockNumber = safe32(block.number, "xVemp::_writeCheckpoint: block number exceeds 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint n, string memory errorMessage) internal pure returns (uint256) {
        require(n < 2**96, errorMessage);
        return uint256(n);
    }

    function add96(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

    function sub96(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }

    function _updatePauseStatus() internal {
        if (paused()) {
            _unpause();
        } else {
            _pause();
        }
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address[] memory account) internal {
        for(uint256 i=0; i<account.length; i++) {
            require(!has(role, account[i]), "Roles: account already has role");
            role.bearer[account[i]] = true;
        }
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

contract MinterRole is Context, Ownable {
    using Roles for Roles.Role;

    event MinterAdded(address[] account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        address[] memory admins = new address[](1);
        admins[0] = _msgSender();
        _addMinter(admins);
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address[] memory account) public onlyMinter {
        _addMinter(account);
    }
    
    function removeMinter(address account) public onlyOwner {
        _removeMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address[] memory account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
abstract contract BEP20Mintable is BEP20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

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

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

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

contract xVEMPBEP20Token is BEP20, BEP20Mintable, BEP20Burnable {
    constructor(string memory tokenName, string memory tokenSymbol)
    BEP20(tokenName, tokenSymbol)
    public
    { }

    function updatePauseStatus() public onlyOwner {
        _updatePauseStatus();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","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":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"account","type":"address[]"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updatePauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002936380380620029368339810160408190526200003491620003d7565b6000805460ff191690558151829082906200005790600490602085019062000294565b5080516200006d90600590602084019062000294565b50506006805460ff19166012179055506000620000896200013d565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051600180825281830190925260609160208083019080368337019050509050620001036200013d565b816000815181106200011157fe5b6001600160a01b0390921660209283029190910190910152620001348162000141565b50505062000506565b3390565b6200015c81600c6200019860201b62000ee61790919060201c565b7f9646091f1eb704614b3a57bcb787d8521f85c089d1fcd1c09bdf98886bdb0832816040516200018d91906200043e565b60405180910390a150565b60005b81518110156200024457620001cb83838381518110620001b757fe5b60200260200101516200024960201b60201c565b15620001f45760405162461bcd60e51b8152600401620001eb906200048d565b60405180910390fd5b60018360000160008484815181106200020957fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016200019b565b505050565b60006001600160a01b038216620002745760405162461bcd60e51b8152600401620001eb90620004c4565b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002d757805160ff191683800117855562000307565b8280016001018555821562000307579182015b8281111562000307578251825591602001919060010190620002ea565b506200031592915062000319565b5090565b5b808211156200031557600081556001016200031a565b600082601f83011262000341578081fd5b81516001600160401b038082111562000358578283fd5b6040516020601f8401601f19168201810183811183821017156200037a578586fd5b806040525081945083825286818588010111156200039757600080fd5b600092505b83831015620003bb57858301810151828401820152918201916200039c565b83831115620003cd5760008185840101525b5050505092915050565b60008060408385031215620003ea578182fd5b82516001600160401b038082111562000401578384fd5b6200040f8683870162000330565b9350602085015191508082111562000425578283fd5b50620004348582860162000330565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015620004815783516001600160a01b0316835292840192918401916001016200045a565b50909695505050505050565b6020808252601f908201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604082015260600190565b60208082526022908201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604082015261737360f01b606082015260800190565b61242080620005166000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063a9059cbb116100ad578063dd62ed3e1161007c578063dd62ed3e146103ff578063e7a324dc14610412578063f1127ed81461041a578063f18e33e11461043b578063f2fde38b1461044e576101fb565b8063a9059cbb146103b3578063aa271e1a146103c6578063b4b5ea57146103d9578063c3cda520146103ec576101fb565b80638da5cb5b116100e95780638da5cb5b1461038857806395d89b41146103905780639865027514610398578063a457c2d7146103a0576101fb565b8063715018a614610347578063782d6fe11461034f57806379cc6790146103625780637ecebe0014610375576101fb565b806340c10f19116101925780635c19a95c116101615780635c19a95c146102f95780635c975abb1461030c5780636fcfff451461031457806370a0823114610334576101fb565b806340c10f19146102ab57806342966c68146102be578063587cde1e146102d157806359d4df41146102f1576101fb565b806323b872dd116101ce57806323b872dd1461025b5780633092afd51461026e578063313ce567146102835780633950935114610298576101fb565b806306fdde0314610200578063095ea7b31461021e57806318160ddd1461023e57806320606b7014610253575b600080fd5b610208610461565b6040516102159190611ccf565b60405180910390f35b61023161022c366004611a5c565b6104f7565b6040516102159190611c55565b610246610515565b6040516102159190611c60565b61024661051b565b610231610269366004611a1c565b61053f565b61028161027c3660046119cd565b6105c6565b005b61028b61061a565b6040516102159190612241565b6102316102a6366004611a5c565b610623565b6102316102b9366004611a5c565b610671565b6102816102cc366004611bc1565b6106a4565b6102e46102df3660046119cd565b6106b5565b6040516102159190611bf4565b6102816106d0565b6102816103073660046119cd565b610719565b610231610723565b6103276103223660046119cd565b61072c565b604051610215919061221a565b6102466103423660046119cd565b610744565b61028161075f565b61024661035d366004611a5c565b6107e8565b610281610370366004611a5c565b6109d1565b6102466103833660046119cd565b610a26565b6102e4610a38565b610208610a47565b610281610aa8565b6102316103ae366004611a5c565b610ab8565b6102316103c1366004611a5c565b610b20565b6102316103d43660046119cd565b610b34565b6102466103e73660046119cd565b610b41565b6102816103fa366004611a86565b610ba5565b61024661040d3660046119e8565b610d79565b610246610da4565b61042d610428366004611ae5565b610dc8565b60405161021592919061222b565b610281610449366004611b24565b610df5565b61028161045c3660046119cd565b610e25565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ed5780601f106104c2576101008083540402835291602001916104ed565b820191906000526020600020905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b600061050b610504610f7a565b8484610f7e565b5060015b92915050565b60035490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b600061054c848484611032565b6105bc84610558610f7a565b6105b785604051806060016040528060288152602001612329602891396001600160a01b038a16600090815260026020526040812090610596610f7a565b6001600160a01b0316815260208101919091526040016000205491906111a5565b610f7e565b5060019392505050565b6105ce610f7a565b6001600160a01b03166105df610a38565b6001600160a01b03161461060e5760405162461bcd60e51b815260040161060590612005565b60405180910390fd5b610617816111d1565b50565b60065460ff1690565b600061050b610630610f7a565b846105b78560026000610641610f7a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611213565b600061067e6103d4610f7a565b61069a5760405162461bcd60e51b815260040161060590611eea565b61050b8383611238565b6106176106af610f7a565b8261131d565b6007602052600090815260409020546001600160a01b031681565b6106d8610f7a565b6001600160a01b03166106e9610a38565b6001600160a01b03161461070f5760405162461bcd60e51b815260040161060590612005565b6107176113ff565b565b6106173382611421565b60005460ff1690565b60096020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526001602052604090205490565b610767610f7a565b6001600160a01b0316610778610a38565b6001600160a01b03161461079e5760405162461bcd60e51b815260040161060590612005565b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b60004382106108095760405162461bcd60e51b815260040161060590612146565b6001600160a01b03831660009081526009602052604090205463ffffffff168061083757600091505061050f565b6001600160a01b038416600090815260086020908152604080832063ffffffff6000198601811685529252909120541683106108a6576001600160a01b03841660009081526008602090815260408083206000199490940163ffffffff1683529290522060010154905061050f565b6001600160a01b038416600090815260086020908152604080832083805290915290205463ffffffff168310156108e157600091505061050f565b600060001982015b8163ffffffff168163ffffffff16111561099a57600282820363ffffffff1604810361091361199f565b506001600160a01b038716600090815260086020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156109755760200151945061050f9350505050565b805163ffffffff1687111561098c57819350610993565b6001820392505b50506108e9565b506001600160a01b038516600090815260086020908152604080832063ffffffff9094168352929052206001015491505092915050565b6000610a038260405180606001604052806024815260200161237a602491396109fc8661040d610f7a565b91906111a5565b9050610a1783610a11610f7a565b83610f7e565b610a21838361131d565b505050565b600a6020526000908152604090205481565b600b546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ed5780601f106104c2576101008083540402835291602001916104ed565b610717610ab3610f7a565b6111d1565b600061050b610ac5610f7a565b846105b78560405180606001604052806025815260200161239e6025913960026000610aef610f7a565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111a5565b600061050b610b2d610f7a565b8484611032565b600061050f600c836114a1565b6001600160a01b03811660009081526009602052604081205463ffffffff1680610b6c576000610b9e565b6001600160a01b038316600090815260086020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610bd0610461565b80519060200120610bdf6114e9565b30604051602001610bf39493929190611c8d565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610c449493929190611c69565b60405160208183030381529060405280519060200120905060008282604051602001610c71929190611bd9565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cae9493929190611cb1565b6020604051602081039080840390855afa158015610cd0573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d035760405162461bcd60e51b815260040161060590611fbe565b6001600160a01b0381166000908152600a602052604090208054600181019091558914610d425760405162461bcd60e51b815260040161060590611f7b565b87421115610d625760405162461bcd60e51b8152600401610605906121c5565b610d6c818b611421565b505050505b505050505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60086020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610e006103d4610f7a565b610e1c5760405162461bcd60e51b815260040161060590611eea565b610617816114ed565b610e2d610f7a565b6001600160a01b0316610e3e610a38565b6001600160a01b031614610e645760405162461bcd60e51b815260040161060590612005565b6001600160a01b038116610e8a5760405162461bcd60e51b815260040161060590611dca565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60005b8151811015610a2157610f0f83838381518110610f0257fe5b60200260200101516114a1565b15610f2c5760405162461bcd60e51b815260040161060590611d93565b6001836000016000848481518110610f4057fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610ee9565b3390565b6001600160a01b038316610fa45760405162461bcd60e51b815260040161060590612102565b6001600160a01b038216610fca5760405162461bcd60e51b815260040161060590611e10565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611025908590611c60565b60405180910390a3505050565b61103a610723565b6110565760405162461bcd60e51b815260040161060590611d65565b6001600160a01b03831661107c5760405162461bcd60e51b8152600401610605906120bd565b6001600160a01b0382166110a25760405162461bcd60e51b815260040161060590611d22565b6110ad838383610a21565b6110ea816040518060600160405280602681526020016122ce602691396001600160a01b03861660009081526001602052604090205491906111a5565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546111199082611213565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061116b908590611c60565b60405180910390a36001600160a01b03808416600090815260076020526040808220548584168352912054610a2192918216911683611532565b600081848411156111c95760405162461bcd60e51b81526004016106059190611ccf565b505050900390565b6111dc600c826116a1565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600082820183811015610b9e5760405162461bcd60e51b815260040161060590611e52565b6001600160a01b03821661125e5760405162461bcd60e51b81526004016106059061218e565b61126a60008383610a21565b6003546112779082611213565b6003556001600160a01b03821660009081526001602052604090205461129d9082611213565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112ec908590611c60565b60405180910390a36001600160a01b03808316600090815260076020526040812054611319921683611532565b5050565b6001600160a01b0382166113435760405162461bcd60e51b81526004016106059061207c565b61134f82600083610a21565b61138c816040518060600160405280602281526020016122ac602291396001600160a01b03851660009081526001602052604090205491906111a5565b6001600160a01b0383166000908152600160205260409020556003546113b290826116e9565b6003556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113f3908590611c60565b60405180910390a35050565b611407610723565b1561141957611414611711565b610717565b61071761177f565b6001600160a01b03808316600081815260076020818152604080842080546001845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461149b828483611532565b50505050565b60006001600160a01b0382166114c95760405162461bcd60e51b81526004016106059061203a565b506001600160a01b03166000908152602091909152604090205460ff1690565b4690565b6114f8600c82610ee6565b7f9646091f1eb704614b3a57bcb787d8521f85c089d1fcd1c09bdf98886bdb0832816040516115279190611c08565b60405180910390a150565b816001600160a01b0316836001600160a01b0316141580156115545750600081115b15610a21576001600160a01b038316156115ff576001600160a01b03831660009081526009602052604081205463ffffffff1690816115945760006115c6565b6001600160a01b038516600090815260086020908152604080832063ffffffff60001987011684529091529020600101545b905060006115ed8285604051806060016040528060298152602001612351602991396111a5565b90506115fb868484846117da565b5050505b6001600160a01b03821615610a21576001600160a01b03821660009081526009602052604081205463ffffffff16908161163a57600061166c565b6001600160a01b038416600090815260086020908152604080832063ffffffff60001987011684529091529020600101545b9050600061169382856040518060600160405280602881526020016123c36028913961193f565b9050610d71858484846117da565b6116ab82826114a1565b6116c75760405162461bcd60e51b815260040161060590611f3a565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008282111561170b5760405162461bcd60e51b815260040161060590611e89565b50900390565b611719610723565b6117355760405162461bcd60e51b815260040161060590611d65565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611768610f7a565b6040516117759190611bf4565b60405180910390a1565b611787610723565b156117a45760405162461bcd60e51b815260040161060590611ec0565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611768610f7a565b60006117fe436040518060600160405280603581526020016122f46035913961196f565b905060008463ffffffff1611801561184757506001600160a01b038516600090815260086020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611884576001600160a01b038516600090815260086020908152604080832063ffffffff600019890116845290915290206001018290556118f5565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600884528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260099092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724848460405161193092919061220c565b60405180910390a25050505050565b600083830182858210156119665760405162461bcd60e51b81526004016106059190611ccf565b50949350505050565b60008164010000000084106119975760405162461bcd60e51b81526004016106059190611ccf565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b038116811461050f57600080fd5b6000602082840312156119de578081fd5b610b9e83836119b6565b600080604083850312156119fa578081fd5b611a0484846119b6565b9150611a1384602085016119b6565b90509250929050565b600080600060608486031215611a30578081fd5b8335611a3b81612296565b92506020840135611a4b81612296565b929592945050506040919091013590565b60008060408385031215611a6e578182fd5b611a7884846119b6565b946020939093013593505050565b60008060008060008060c08789031215611a9e578182fd5b611aa888886119b6565b95506020870135945060408701359350606087013560ff81168114611acb578283fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611af7578182fd5b611b0184846119b6565b9150602083013563ffffffff81168114611b19578182fd5b809150509250929050565b60006020808385031215611b36578182fd5b823567ffffffffffffffff811115611b4c578283fd5b8301601f81018513611b5c578283fd5b8035611b6f611b6a82612276565b61224f565b8181528381019083850185840285018601891015611b8b578687fd5b8694505b83851015611bb557611ba189826119b6565b835260019490940193918501918501611b8f565b50979650505050505050565b600060208284031215611bd2578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6020808252825182820181905260009190848201906040850190845b81811015611c495783516001600160a01b031683529284019291840191600101611c24565b50909695505050505050565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611cfb57858101830151858201604001528201611cdf565b81811115611d0c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601f908201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526030908201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560408201526f20746865204d696e74657220726f6c6560801b606082015260800190565b60208082526021908201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6040820152606560f81b606082015260800190565b60208082526023908201527f7856656d703a3a64656c656761746542795369673a20696e76616c6964206e6f6040820152626e636560e81b606082015260800190565b60208082526027908201527f7856656d703a3a64656c656761746542795369673a20696e76616c6964207369604082015266676e617475726560c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526028908201527f7856656d703a3a6765745072696f72566f7465733a206e6f74207965742064656040820152671d195c9b5a5b995960c21b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60208082526027908201527f7856656d703a3a64656c656761746542795369673a207369676e617475726520604082015266195e1c1a5c995960ca1b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b60405181810167ffffffffffffffff8111828210171561226e57600080fd5b604052919050565b600067ffffffffffffffff82111561228c578081fd5b5060209081020190565b6001600160a01b038116811461061757600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63657856656d703a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63657856656d703a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777342455032303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f7856656d703a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773a2646970667358221220cbae5c1ccedb4e3d10baa68fa6043957edae6d0a1d1a04d63ad99b0dea89cab664736f6c634300060c00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000057856454d5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057856454d50000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063a9059cbb116100ad578063dd62ed3e1161007c578063dd62ed3e146103ff578063e7a324dc14610412578063f1127ed81461041a578063f18e33e11461043b578063f2fde38b1461044e576101fb565b8063a9059cbb146103b3578063aa271e1a146103c6578063b4b5ea57146103d9578063c3cda520146103ec576101fb565b80638da5cb5b116100e95780638da5cb5b1461038857806395d89b41146103905780639865027514610398578063a457c2d7146103a0576101fb565b8063715018a614610347578063782d6fe11461034f57806379cc6790146103625780637ecebe0014610375576101fb565b806340c10f19116101925780635c19a95c116101615780635c19a95c146102f95780635c975abb1461030c5780636fcfff451461031457806370a0823114610334576101fb565b806340c10f19146102ab57806342966c68146102be578063587cde1e146102d157806359d4df41146102f1576101fb565b806323b872dd116101ce57806323b872dd1461025b5780633092afd51461026e578063313ce567146102835780633950935114610298576101fb565b806306fdde0314610200578063095ea7b31461021e57806318160ddd1461023e57806320606b7014610253575b600080fd5b610208610461565b6040516102159190611ccf565b60405180910390f35b61023161022c366004611a5c565b6104f7565b6040516102159190611c55565b610246610515565b6040516102159190611c60565b61024661051b565b610231610269366004611a1c565b61053f565b61028161027c3660046119cd565b6105c6565b005b61028b61061a565b6040516102159190612241565b6102316102a6366004611a5c565b610623565b6102316102b9366004611a5c565b610671565b6102816102cc366004611bc1565b6106a4565b6102e46102df3660046119cd565b6106b5565b6040516102159190611bf4565b6102816106d0565b6102816103073660046119cd565b610719565b610231610723565b6103276103223660046119cd565b61072c565b604051610215919061221a565b6102466103423660046119cd565b610744565b61028161075f565b61024661035d366004611a5c565b6107e8565b610281610370366004611a5c565b6109d1565b6102466103833660046119cd565b610a26565b6102e4610a38565b610208610a47565b610281610aa8565b6102316103ae366004611a5c565b610ab8565b6102316103c1366004611a5c565b610b20565b6102316103d43660046119cd565b610b34565b6102466103e73660046119cd565b610b41565b6102816103fa366004611a86565b610ba5565b61024661040d3660046119e8565b610d79565b610246610da4565b61042d610428366004611ae5565b610dc8565b60405161021592919061222b565b610281610449366004611b24565b610df5565b61028161045c3660046119cd565b610e25565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ed5780601f106104c2576101008083540402835291602001916104ed565b820191906000526020600020905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b600061050b610504610f7a565b8484610f7e565b5060015b92915050565b60035490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b600061054c848484611032565b6105bc84610558610f7a565b6105b785604051806060016040528060288152602001612329602891396001600160a01b038a16600090815260026020526040812090610596610f7a565b6001600160a01b0316815260208101919091526040016000205491906111a5565b610f7e565b5060019392505050565b6105ce610f7a565b6001600160a01b03166105df610a38565b6001600160a01b03161461060e5760405162461bcd60e51b815260040161060590612005565b60405180910390fd5b610617816111d1565b50565b60065460ff1690565b600061050b610630610f7a565b846105b78560026000610641610f7a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611213565b600061067e6103d4610f7a565b61069a5760405162461bcd60e51b815260040161060590611eea565b61050b8383611238565b6106176106af610f7a565b8261131d565b6007602052600090815260409020546001600160a01b031681565b6106d8610f7a565b6001600160a01b03166106e9610a38565b6001600160a01b03161461070f5760405162461bcd60e51b815260040161060590612005565b6107176113ff565b565b6106173382611421565b60005460ff1690565b60096020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526001602052604090205490565b610767610f7a565b6001600160a01b0316610778610a38565b6001600160a01b03161461079e5760405162461bcd60e51b815260040161060590612005565b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b60004382106108095760405162461bcd60e51b815260040161060590612146565b6001600160a01b03831660009081526009602052604090205463ffffffff168061083757600091505061050f565b6001600160a01b038416600090815260086020908152604080832063ffffffff6000198601811685529252909120541683106108a6576001600160a01b03841660009081526008602090815260408083206000199490940163ffffffff1683529290522060010154905061050f565b6001600160a01b038416600090815260086020908152604080832083805290915290205463ffffffff168310156108e157600091505061050f565b600060001982015b8163ffffffff168163ffffffff16111561099a57600282820363ffffffff1604810361091361199f565b506001600160a01b038716600090815260086020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156109755760200151945061050f9350505050565b805163ffffffff1687111561098c57819350610993565b6001820392505b50506108e9565b506001600160a01b038516600090815260086020908152604080832063ffffffff9094168352929052206001015491505092915050565b6000610a038260405180606001604052806024815260200161237a602491396109fc8661040d610f7a565b91906111a5565b9050610a1783610a11610f7a565b83610f7e565b610a21838361131d565b505050565b600a6020526000908152604090205481565b600b546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ed5780601f106104c2576101008083540402835291602001916104ed565b610717610ab3610f7a565b6111d1565b600061050b610ac5610f7a565b846105b78560405180606001604052806025815260200161239e6025913960026000610aef610f7a565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111a5565b600061050b610b2d610f7a565b8484611032565b600061050f600c836114a1565b6001600160a01b03811660009081526009602052604081205463ffffffff1680610b6c576000610b9e565b6001600160a01b038316600090815260086020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610bd0610461565b80519060200120610bdf6114e9565b30604051602001610bf39493929190611c8d565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610c449493929190611c69565b60405160208183030381529060405280519060200120905060008282604051602001610c71929190611bd9565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cae9493929190611cb1565b6020604051602081039080840390855afa158015610cd0573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d035760405162461bcd60e51b815260040161060590611fbe565b6001600160a01b0381166000908152600a602052604090208054600181019091558914610d425760405162461bcd60e51b815260040161060590611f7b565b87421115610d625760405162461bcd60e51b8152600401610605906121c5565b610d6c818b611421565b505050505b505050505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60086020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610e006103d4610f7a565b610e1c5760405162461bcd60e51b815260040161060590611eea565b610617816114ed565b610e2d610f7a565b6001600160a01b0316610e3e610a38565b6001600160a01b031614610e645760405162461bcd60e51b815260040161060590612005565b6001600160a01b038116610e8a5760405162461bcd60e51b815260040161060590611dca565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60005b8151811015610a2157610f0f83838381518110610f0257fe5b60200260200101516114a1565b15610f2c5760405162461bcd60e51b815260040161060590611d93565b6001836000016000848481518110610f4057fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610ee9565b3390565b6001600160a01b038316610fa45760405162461bcd60e51b815260040161060590612102565b6001600160a01b038216610fca5760405162461bcd60e51b815260040161060590611e10565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611025908590611c60565b60405180910390a3505050565b61103a610723565b6110565760405162461bcd60e51b815260040161060590611d65565b6001600160a01b03831661107c5760405162461bcd60e51b8152600401610605906120bd565b6001600160a01b0382166110a25760405162461bcd60e51b815260040161060590611d22565b6110ad838383610a21565b6110ea816040518060600160405280602681526020016122ce602691396001600160a01b03861660009081526001602052604090205491906111a5565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546111199082611213565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061116b908590611c60565b60405180910390a36001600160a01b03808416600090815260076020526040808220548584168352912054610a2192918216911683611532565b600081848411156111c95760405162461bcd60e51b81526004016106059190611ccf565b505050900390565b6111dc600c826116a1565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600082820183811015610b9e5760405162461bcd60e51b815260040161060590611e52565b6001600160a01b03821661125e5760405162461bcd60e51b81526004016106059061218e565b61126a60008383610a21565b6003546112779082611213565b6003556001600160a01b03821660009081526001602052604090205461129d9082611213565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112ec908590611c60565b60405180910390a36001600160a01b03808316600090815260076020526040812054611319921683611532565b5050565b6001600160a01b0382166113435760405162461bcd60e51b81526004016106059061207c565b61134f82600083610a21565b61138c816040518060600160405280602281526020016122ac602291396001600160a01b03851660009081526001602052604090205491906111a5565b6001600160a01b0383166000908152600160205260409020556003546113b290826116e9565b6003556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113f3908590611c60565b60405180910390a35050565b611407610723565b1561141957611414611711565b610717565b61071761177f565b6001600160a01b03808316600081815260076020818152604080842080546001845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461149b828483611532565b50505050565b60006001600160a01b0382166114c95760405162461bcd60e51b81526004016106059061203a565b506001600160a01b03166000908152602091909152604090205460ff1690565b4690565b6114f8600c82610ee6565b7f9646091f1eb704614b3a57bcb787d8521f85c089d1fcd1c09bdf98886bdb0832816040516115279190611c08565b60405180910390a150565b816001600160a01b0316836001600160a01b0316141580156115545750600081115b15610a21576001600160a01b038316156115ff576001600160a01b03831660009081526009602052604081205463ffffffff1690816115945760006115c6565b6001600160a01b038516600090815260086020908152604080832063ffffffff60001987011684529091529020600101545b905060006115ed8285604051806060016040528060298152602001612351602991396111a5565b90506115fb868484846117da565b5050505b6001600160a01b03821615610a21576001600160a01b03821660009081526009602052604081205463ffffffff16908161163a57600061166c565b6001600160a01b038416600090815260086020908152604080832063ffffffff60001987011684529091529020600101545b9050600061169382856040518060600160405280602881526020016123c36028913961193f565b9050610d71858484846117da565b6116ab82826114a1565b6116c75760405162461bcd60e51b815260040161060590611f3a565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008282111561170b5760405162461bcd60e51b815260040161060590611e89565b50900390565b611719610723565b6117355760405162461bcd60e51b815260040161060590611d65565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611768610f7a565b6040516117759190611bf4565b60405180910390a1565b611787610723565b156117a45760405162461bcd60e51b815260040161060590611ec0565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611768610f7a565b60006117fe436040518060600160405280603581526020016122f46035913961196f565b905060008463ffffffff1611801561184757506001600160a01b038516600090815260086020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611884576001600160a01b038516600090815260086020908152604080832063ffffffff600019890116845290915290206001018290556118f5565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600884528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260099092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724848460405161193092919061220c565b60405180910390a25050505050565b600083830182858210156119665760405162461bcd60e51b81526004016106059190611ccf565b50949350505050565b60008164010000000084106119975760405162461bcd60e51b81526004016106059190611ccf565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b038116811461050f57600080fd5b6000602082840312156119de578081fd5b610b9e83836119b6565b600080604083850312156119fa578081fd5b611a0484846119b6565b9150611a1384602085016119b6565b90509250929050565b600080600060608486031215611a30578081fd5b8335611a3b81612296565b92506020840135611a4b81612296565b929592945050506040919091013590565b60008060408385031215611a6e578182fd5b611a7884846119b6565b946020939093013593505050565b60008060008060008060c08789031215611a9e578182fd5b611aa888886119b6565b95506020870135945060408701359350606087013560ff81168114611acb578283fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611af7578182fd5b611b0184846119b6565b9150602083013563ffffffff81168114611b19578182fd5b809150509250929050565b60006020808385031215611b36578182fd5b823567ffffffffffffffff811115611b4c578283fd5b8301601f81018513611b5c578283fd5b8035611b6f611b6a82612276565b61224f565b8181528381019083850185840285018601891015611b8b578687fd5b8694505b83851015611bb557611ba189826119b6565b835260019490940193918501918501611b8f565b50979650505050505050565b600060208284031215611bd2578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6020808252825182820181905260009190848201906040850190845b81811015611c495783516001600160a01b031683529284019291840191600101611c24565b50909695505050505050565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611cfb57858101830151858201604001528201611cdf565b81811115611d0c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601f908201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526030908201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560408201526f20746865204d696e74657220726f6c6560801b606082015260800190565b60208082526021908201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6040820152606560f81b606082015260800190565b60208082526023908201527f7856656d703a3a64656c656761746542795369673a20696e76616c6964206e6f6040820152626e636560e81b606082015260800190565b60208082526027908201527f7856656d703a3a64656c656761746542795369673a20696e76616c6964207369604082015266676e617475726560c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526028908201527f7856656d703a3a6765745072696f72566f7465733a206e6f74207965742064656040820152671d195c9b5a5b995960c21b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60208082526027908201527f7856656d703a3a64656c656761746542795369673a207369676e617475726520604082015266195e1c1a5c995960ca1b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b60405181810167ffffffffffffffff8111828210171561226e57600080fd5b604052919050565b600067ffffffffffffffff82111561228c578081fd5b5060209081020190565b6001600160a01b038116811461061757600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63657856656d703a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63657856656d703a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777342455032303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f7856656d703a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773a2646970667358221220cbae5c1ccedb4e3d10baa68fa6043957edae6d0a1d1a04d63ad99b0dea89cab664736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000057856454d5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057856454d50000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName (string): xVEMP
Arg [1] : tokenSymbol (string): xVEMP

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 7856454d50000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 7856454d50000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46546:286:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27009:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29115:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28084:100::-;;;:::i;:::-;;;;;;;:::i;25628:122::-;;;:::i;29758:321::-;;;;;;:::i;:::-;;:::i;44404:97::-;;;;;;:::i;:::-;;:::i;:::-;;27936:83;;;:::i;:::-;;;;;;;:::i;30488:218::-;;;;;;:::i;:::-;;:::i;45305:143::-;;;;;;:::i;:::-;;:::i;45834:91::-;;;;;;:::i;:::-;;:::i;25077:45::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46744:85::-;;;:::i;36137:104::-;;;;;;:::i;:::-;;:::i;22272:86::-;;;:::i;25506:49::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28247:119::-;;;;;;:::i;:::-;;:::i;20720:148::-;;;:::i;38328:1220::-;;;;;;:::i;:::-;;:::i;46244:295::-;;;;;;:::i;:::-;;:::i;26042:39::-;;;;;;:::i;:::-;;:::i;20069:87::-;;;:::i;27211:::-;;;:::i;44509:79::-;;;:::i;31209:269::-;;;;;;:::i;:::-;;:::i;28579:175::-;;;;;;:::i;:::-;;:::i;44174:109::-;;;;;;:::i;:::-;;:::i;37674:223::-;;;;;;:::i;:::-;;:::i;36679:794::-;;;;;;:::i;:::-;;:::i;28817:151::-;;;;;;:::i;:::-;;:::i;25844:117::-;;;:::i;25367:70::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;44291:101::-;;;;;;:::i;:::-;;:::i;21023:244::-;;;;;;:::i;:::-;;:::i;27009:83::-;27079:5;27072:12;;;;;;;;-1:-1:-1;;27072:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27046:13;;27072:12;;27079:5;;27072:12;;27079:5;27072:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27009:83;:::o;29115:169::-;29198:4;29215:39;29224:12;:10;:12::i;:::-;29238:7;29247:6;29215:8;:39::i;:::-;-1:-1:-1;29272:4:0;29115:169;;;;;:::o;28084:100::-;28164:12;;28084:100;:::o;25628:122::-;25670:80;25628:122;:::o;29758:321::-;29864:4;29881:36;29891:6;29899:9;29910:6;29881:9;:36::i;:::-;29928:121;29937:6;29945:12;:10;:12::i;:::-;29959:89;29997:6;29959:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29959:19:0;;;;;;:11;:19;;;;;;29979:12;:10;:12::i;:::-;-1:-1:-1;;;;;29959:33:0;;;;;;;;;;;;-1:-1:-1;29959:33:0;;;:89;:37;:89::i;:::-;29928:8;:121::i;:::-;-1:-1:-1;30067:4:0;29758:321;;;;;:::o;44404:97::-;20300:12;:10;:12::i;:::-;-1:-1:-1;;;;;20289:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20289:23:0;;20281:68;;;;-1:-1:-1;;;20281:68:0;;;;;;;:::i;:::-;;;;;;;;;44471:22:::1;44485:7;44471:13;:22::i;:::-;44404:97:::0;:::o;27936:83::-;28002:9;;;;27936:83;:::o;30488:218::-;30576:4;30593:83;30602:12;:10;:12::i;:::-;30616:7;30625:50;30664:10;30625:11;:25;30637:12;:10;:12::i;:::-;-1:-1:-1;;;;;30625:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30625:25:0;;;:34;;;;;;;;;;;:38;:50::i;45305:143::-;45379:4;44071:22;44080:12;:10;:12::i;44071:22::-;44063:83;;;;-1:-1:-1;;;44063:83:0;;;;;;;:::i;:::-;45396:22:::1;45402:7;45411:6;45396:5;:22::i;45834:91::-:0;45890:27;45896:12;:10;:12::i;:::-;45910:6;45890:5;:27::i;25077:45::-;;;;;;;;;;;;-1:-1:-1;;;;;25077:45:0;;:::o;46744:85::-;20300:12;:10;:12::i;:::-;-1:-1:-1;;;;;20289:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20289:23:0;;20281:68;;;;-1:-1:-1;;;20281:68:0;;;;;;;:::i;:::-;46801:20:::1;:18;:20::i;:::-;46744:85::o:0;36137:104::-;36201:32;36211:10;36223:9;36201;:32::i;22272:86::-;22319:4;22343:7;;;22272:86;:::o;25506:49::-;;;;;;;;;;;;;;;:::o;28247:119::-;-1:-1:-1;;;;;28340:18:0;28313:7;28340:18;;;:9;:18;;;;;;;28247:119::o;20720:148::-;20300:12;:10;:12::i;:::-;-1:-1:-1;;;;;20289:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20289:23:0;;20281:68;;;;-1:-1:-1;;;20281:68:0;;;;;;;:::i;:::-;20811:6:::1;::::0;20790:40:::1;::::0;20827:1:::1;::::0;-1:-1:-1;;;;;20811:6:0::1;::::0;20790:40:::1;::::0;20827:1;;20790:40:::1;20841:6;:19:::0;;-1:-1:-1;;;;;;20841:19:0::1;::::0;;20720:148::o;38328:1220::-;38407:7;38449:12;38435:11;:26;38427:79;;;;-1:-1:-1;;;38427:79:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38541:23:0;;38519:19;38541:23;;;:14;:23;;;;;;;;38579:17;38575:58;;38620:1;38613:8;;;;;38575:58;-1:-1:-1;;;;;38693:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;38714:16:0;;38693:38;;;;;;;;;:48;;:63;-1:-1:-1;38689:147:0;;-1:-1:-1;;;;;38780:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;38801:16:0;;;;38780:38;;;;;;;;38816:1;38780:44;;;-1:-1:-1;38773:51:0;;38689:147;-1:-1:-1;;;;;38897:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;38893:88:0;;;38968:1;38961:8;;;;;38893:88;38993:12;-1:-1:-1;;39035:16:0;;39062:428;39077:5;39069:13;;:5;:13;;;39062:428;;;39141:1;39124:13;;;39123:19;;;39115:27;;39184:20;;:::i;:::-;-1:-1:-1;;;;;;39207:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;39184:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39254:27;;39250:229;;;39309:8;;;;-1:-1:-1;39302:15:0;;-1:-1:-1;;;;39302:15:0;39250:229;39343:12;;:26;;;-1:-1:-1;39339:140:0;;;39398:6;39390:14;;39339:140;;;39462:1;39453:6;:10;39445:18;;39339:140;39062:428;;;;;-1:-1:-1;;;;;;39507:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;38328:1220:0;;;;:::o;46244:295::-;46321:26;46350:84;46387:6;46350:84;;;;;;;;;;;;;;;;;:32;46360:7;46369:12;:10;:12::i;46350:32::-;:36;:84;:36;:84::i;:::-;46321:113;;46447:51;46456:7;46465:12;:10;:12::i;:::-;46479:18;46447:8;:51::i;:::-;46509:22;46515:7;46524:6;46509:5;:22::i;:::-;46244:295;;;:::o;26042:39::-;;;;;;;;;;;;;:::o;20069:87::-;20142:6;;-1:-1:-1;;;;;20142:6:0;20069:87;:::o;27211:::-;27283:7;27276:14;;;;;;;;-1:-1:-1;;27276:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27250:13;;27276:14;;27283:7;;27276:14;;27283:7;27276:14;;;;;;;;;;;;;;;;;;;;;;;;44509:79;44553:27;44567:12;:10;:12::i;:::-;44553:13;:27::i;31209:269::-;31302:4;31319:129;31328:12;:10;:12::i;:::-;31342:7;31351:96;31390:15;31351:96;;;;;;;;;;;;;;;;;:11;:25;31363:12;:10;:12::i;:::-;-1:-1:-1;;;;;31351:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31351:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;28579:175::-;28665:4;28682:42;28692:12;:10;:12::i;:::-;28706:9;28717:6;28682:9;:42::i;44174:109::-;44230:4;44254:21;:8;44267:7;44254:12;:21::i;37674:223::-;-1:-1:-1;;;;;37781:23:0;;37739:7;37781:23;;;:14;:23;;;;;;;;37822:16;:67;;37888:1;37822:67;;;-1:-1:-1;;;;;37841:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;37862:16:0;;37841:38;;;;;;;;37877:1;37841:44;;37822:67;37815:74;37674:223;-1:-1:-1;;;37674:223:0:o;36679:794::-;36795:23;25670:80;36875:6;:4;:6::i;:::-;36859:24;;;;;;36885:12;:10;:12::i;:::-;36907:4;36831:82;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36821:93;;;;;;36795:119;;36925:18;25890:71;36988:9;36999:5;37006:6;36956:57;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36946:68;;;;;;36925:89;;37025:14;37081:15;37098:10;37052:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37042:68;;;;;;37025:85;;37121:17;37141:26;37151:6;37159:1;37162;37165;37141:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37141:26:0;;-1:-1:-1;;37141:26:0;;;-1:-1:-1;;;;;;;37186:23:0;;37178:75;;;;-1:-1:-1;;;37178:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37281:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;37272:28;;37264:76;;;;-1:-1:-1;;;37264:76:0;;;;;;;:::i;:::-;37366:6;37359:3;:13;;37351:65;;;;-1:-1:-1;;;37351:65:0;;;;;;;:::i;:::-;37434:31;37444:9;37455;37434;:31::i;:::-;37427:38;;;;36679:794;;;;;;;:::o;28817:151::-;-1:-1:-1;;;;;28933:18:0;;;28906:7;28933:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28817:151::o;25844:117::-;25890:71;25844:117;:::o;25367:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44291:101::-;44071:22;44080:12;:10;:12::i;44071:22::-;44063:83;;;;-1:-1:-1;;;44063:83:0;;;;;;;:::i;:::-;44365:19:::1;44376:7;44365:10;:19::i;21023:244::-:0;20300:12;:10;:12::i;:::-;-1:-1:-1;;;;;20289:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20289:23:0;;20281:68;;;;-1:-1:-1;;;20281:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21112:22:0;::::1;21104:73;;;;-1:-1:-1::0;;;21104:73:0::1;;;;;;;:::i;:::-;21214:6;::::0;21193:38:::1;::::0;-1:-1:-1;;;;;21193:38:0;;::::1;::::0;21214:6:::1;::::0;21193:38:::1;::::0;21214:6:::1;::::0;21193:38:::1;21242:6;:17:::0;;-1:-1:-1;;;;;;21242:17:0::1;-1:-1:-1::0;;;;;21242:17:0;;;::::1;::::0;;;::::1;::::0;;21023:244::o;42828:263::-;42910:9;42906:178;42925:7;:14;42923:1;:16;42906:178;;;42970:21;42974:4;42980:7;42988:1;42980:10;;;;;;;;;;;;;;42970:3;:21::i;:::-;42969:22;42961:66;;;;-1:-1:-1;;;42961:66:0;;;;;;;:::i;:::-;43068:4;43042;:11;;:23;43054:7;43062:1;43054:10;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43042:23:0;;;;;;;;;;;-1:-1:-1;43042:23:0;:30;;-1:-1:-1;;43042:30:0;;;;;;;;;;-1:-1:-1;42941:3:0;42906:178;;648:106;736:10;648:106;:::o;34526:346::-;-1:-1:-1;;;;;34628:19:0;;34620:68;;;;-1:-1:-1;;;34620:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34707:21:0;;34699:68;;;;-1:-1:-1;;;34699:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34780:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;34832:32;;;;;34810:6;;34832:32;:::i;:::-;;;;;;;;34526:346;;;:::o;31968:634::-;22875:8;:6;:8::i;:::-;22867:41;;;;-1:-1:-1;;;22867:41:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32085:20:0;::::1;32077:70;;;;-1:-1:-1::0;;;32077:70:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32166:23:0;::::1;32158:71;;;;-1:-1:-1::0;;;32158:71:0::1;;;;;;;:::i;:::-;32242:47;32263:6;32271:9;32282:6;32242:20;:47::i;:::-;32322:71;32344:6;32322:71;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32322:17:0;::::1;;::::0;;;:9:::1;:17;::::0;;;;;;:71;:21:::1;:71::i;:::-;-1:-1:-1::0;;;;;32302:17:0;;::::1;;::::0;;;:9:::1;:17;::::0;;;;;:91;;;;32427:20;;::::1;::::0;;;;:32:::1;::::0;32452:6;32427:24:::1;:32::i;:::-;-1:-1:-1::0;;;;;32404:20:0;;::::1;;::::0;;;:9:::1;:20;::::0;;;;;;:55;;;;32475:35;;;;::::1;::::0;::::1;::::0;::::1;::::0;32503:6;;32475:35:::1;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;32546:17:0;;::::1;;::::0;;;:9:::1;:17;::::0;;;;;;32565:20;;::::1;::::0;;;;;32531:63:::1;::::0;32546:17;;::::1;::::0;32565:20:::1;32587:6:::0;32531:14:::1;:63::i;9262:166::-:0;9348:7;9384:12;9376:6;;;;9368:29;;;;-1:-1:-1;;;9368:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;9415:5:0;;;9262:166::o;44735:130::-;44795:24;:8;44811:7;44795:15;:24::i;:::-;44835:22;;-1:-1:-1;;;;;44835:22:0;;;;;;;;44735:130;:::o;6435:179::-;6493:7;6525:5;;;6549:6;;;;6541:46;;;;-1:-1:-1;;;6541:46:0;;;;;;;:::i;32883:453::-;-1:-1:-1;;;;;32967:21:0;;32959:65;;;;-1:-1:-1;;;32959:65:0;;;;;;;:::i;:::-;33037:49;33066:1;33070:7;33079:6;33037:20;:49::i;:::-;33114:12;;:24;;33131:6;33114:16;:24::i;:::-;33099:12;:39;-1:-1:-1;;;;;33170:18:0;;;;;;:9;:18;;;;;;:30;;33193:6;33170:22;:30::i;:::-;-1:-1:-1;;;;;33149:18:0;;;;;;:9;:18;;;;;;:51;;;;33216:37;;33149:18;;;33216:37;;;;33246:6;;33216:37;:::i;:::-;;;;;;;;-1:-1:-1;;;;;33301:18:0;;;33297:1;33301:18;;;:9;:18;;;;;;33274:54;;33301:18;33321:6;33274:14;:54::i;:::-;32883:453;;:::o;33668:418::-;-1:-1:-1;;;;;33752:21:0;;33744:67;;;;-1:-1:-1;;;33744:67:0;;;;;;;:::i;:::-;33824:49;33845:7;33862:1;33866:6;33824:20;:49::i;:::-;33907:68;33930:6;33907:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33907:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;33886:18:0;;;;;;:9;:18;;;;;:89;34001:12;;:24;;34018:6;34001:16;:24::i;:::-;33986:12;:39;34041:37;;34067:1;;-1:-1:-1;;;;;34041:37:0;;;;;;;34071:6;;34041:37;:::i;:::-;;;;;;;;33668:418;;:::o;42425:149::-;42479:8;:6;:8::i;:::-;42475:92;;;42504:10;:8;:10::i;:::-;42475:92;;;42547:8;:6;:8::i;39556:386::-;-1:-1:-1;;;;;39659:20:0;;;39633:23;39659:20;;;:9;:20;;;;;;;;;;;39725;;;;;;39757;;;;:32;;;-1:-1:-1;;;;;;39757:32:0;;;;;;;39807:54;;39659:20;;;;;39725;;39757:32;;39659:20;;;39807:54;;39633:23;39807:54;39874:60;39889:15;39906:9;39917:16;39874:14;:60::i;:::-;39556:386;;;;:::o;43449:203::-;43521:4;-1:-1:-1;;;;;43546:21:0;;43538:68;;;;-1:-1:-1;;;43538:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;43624:20:0;:11;:20;;;;;;;;;;;;;;;43449:203::o;42264:153::-;42374:9;42264:153;:::o;44596:131::-;44662:21;:8;44675:7;44662:12;:21::i;:::-;44699:20;44711:7;44699:20;;;;;;:::i;:::-;;;;;;;;44596:131;:::o;39954:946::-;40060:6;-1:-1:-1;;;;;40050:16:0;:6;-1:-1:-1;;;;;40050:16:0;;;:30;;;;;40079:1;40070:6;:10;40050:30;40046:847;;;-1:-1:-1;;;;;40101:20:0;;;40097:385;;-1:-1:-1;;;;;40161:22:0;;40142:16;40161:22;;;:14;:22;;;;;;;;;40222:13;:60;;40281:1;40222:60;;;-1:-1:-1;;;;;40238:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;40258:13:0;;40238:34;;;;;;;;40270:1;40238:40;;40222:60;40202:80;;40301:17;40321:69;40327:9;40338:6;40321:69;;;;;;;;;;;;;;;;;:5;:69::i;:::-;40301:89;;40409:57;40426:6;40434:9;40445;40456;40409:16;:57::i;:::-;40097:385;;;;-1:-1:-1;;;;;40502:20:0;;;40498:384;;-1:-1:-1;;;;;40562:22:0;;40543:16;40562:22;;;:14;:22;;;;;;;;;40623:13;:60;;40682:1;40623:60;;;-1:-1:-1;;;;;40639:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;40659:13:0;;40639:34;;;;;;;;40671:1;40639:40;;40623:60;40603:80;;40702:17;40722:68;40728:9;40739:6;40722:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;40702:88;;40809:57;40826:6;40834:9;40845;40856;40809:16;:57::i;43171:183::-;43251:18;43255:4;43261:7;43251:3;:18::i;:::-;43243:64;;;;-1:-1:-1;;;43243:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43318:20:0;43341:5;43318:20;;;;;;;;;;;:28;;-1:-1:-1;;43318:28:0;;;43171:183::o;6897:158::-;6955:7;6988:1;6983;:6;;6975:49;;;;-1:-1:-1;;;6975:49:0;;;;;;;:::i;:::-;-1:-1:-1;7042:5:0;;;6897:158::o;23331:120::-;22875:8;:6;:8::i;:::-;22867:41;;;;-1:-1:-1;;;22867:41:0;;;;;;;:::i;:::-;23400:5:::1;23390:15:::0;;-1:-1:-1;;23390:15:0::1;::::0;;23421:22:::1;23430:12;:10;:12::i;:::-;23421:22;;;;;;:::i;:::-;;;;;;;;23331:120::o:0;23072:118::-;22598:8;:6;:8::i;:::-;22597:9;22589:38;;;;-1:-1:-1;;;22589:38:0;;;;;;;:::i;:::-;23132:7:::1;:14:::0;;-1:-1:-1;;23132:14:0::1;23142:4;23132:14;::::0;;23162:20:::1;23169:12;:10;:12::i;40908:632::-:0;41028:18;41049:77;41056:12;41049:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;41028:98;;41156:1;41141:12;:16;;;:85;;;;-1:-1:-1;;;;;;41161:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;41184:16:0;;41161:40;;;;;;;;;:50;:65;;;:50;;:65;41141:85;41137:329;;;-1:-1:-1;;;;;41241:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;41264:16:0;;41241:40;;;;;;;;41279:1;41241:46;:57;;;41137:329;;;41366:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41327:22:0;;-1:-1:-1;41327:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;41327:72:0;;;;;;;;;;;;;41412:25;;;:14;:25;;;;;;:44;;41440:16;;;41412:44;;;;;;;;;;41137:329;41502:9;-1:-1:-1;;;;;41481:51:0;;41513:8;41523;41481:51;;;;;;;:::i;:::-;;;;;;;;40908:632;;;;;:::o;41888:192::-;41976:7;42008:5;;;42040:12;42032:6;;;;42024:29;;;;-1:-1:-1;;;42024:29:0;;;;;;;;:::i;:::-;-1:-1:-1;42071:1:0;41888:192;-1:-1:-1;;;;41888:192:0:o;41548:161::-;41623:6;41661:12;41654:5;41650:9;;41642:32;;;;-1:-1:-1;;;41642:32:0;;;;;;;;:::i;:::-;-1:-1:-1;41699:1:0;;41548:161;-1:-1:-1;;41548:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;30641:54;;31870:35;;31860:2;;31919:1;;31909:12;1417:241;;1521:2;1509:9;1500:7;1496:23;1492:32;1489:2;;;-1:-1;;1527:12;1489:2;1589:53;1634:7;1610:22;1589:53;:::i;1665:366::-;;;1786:2;1774:9;1765:7;1761:23;1757:32;1754:2;;;-1:-1;;1792:12;1754:2;1854:53;1899:7;1875:22;1854:53;:::i;:::-;1844:63;;1962:53;2007:7;1944:2;1987:9;1983:22;1962:53;:::i;:::-;1952:63;;1748:283;;;;;:::o;2038:491::-;;;;2176:2;2164:9;2155:7;2151:23;2147:32;2144:2;;;-1:-1;;2182:12;2144:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2234:63;-1:-1;2334:2;2373:22;;72:20;97:33;72:20;97:33;:::i;:::-;2138:391;;2342:63;;-1:-1;;;2442:2;2481:22;;;;1079:20;;2138:391::o;2536:366::-;;;2657:2;2645:9;2636:7;2632:23;2628:32;2625:2;;;-1:-1;;2663:12;2625:2;2725:53;2770:7;2746:22;2725:53;:::i;:::-;2715:63;2815:2;2854:22;;;;1079:20;;-1:-1;;;2619:283::o;2909:865::-;;;;;;;3096:3;3084:9;3075:7;3071:23;3067:33;3064:2;;;-1:-1;;3103:12;3064:2;3165:53;3210:7;3186:22;3165:53;:::i;:::-;3155:63;;3255:2;3298:9;3294:22;1079:20;3263:63;;3363:2;3406:9;3402:22;1079:20;3371:63;;3471:2;3512:9;3508:22;1349:20;30952:4;32388:5;30941:16;32365:5;32362:33;32352:2;;-1:-1;;32399:12;32352:2;3058:716;;;;-1:-1;3058:716;;3577:3;3617:22;;942:20;;3686:3;3726:22;;;942:20;;-1:-1;3058:716;-1:-1;;3058:716::o;3781:364::-;;;3901:2;3889:9;3880:7;3876:23;3872:32;3869:2;;;-1:-1;;3907:12;3869:2;3969:53;4014:7;3990:22;3969:53;:::i;:::-;3959:63;;4059:2;4101:9;4097:22;1215:20;30858:10;32268:5;30847:22;32244:5;32241:34;32231:2;;-1:-1;;32279:12;32231:2;4067:62;;;;3863:282;;;;;:::o;4152:377::-;;4281:2;;4269:9;4260:7;4256:23;4252:32;4249:2;;;-1:-1;;4287:12;4249:2;4345:17;4332:31;4383:18;4375:6;4372:30;4369:2;;;-1:-1;;4405:12;4369:2;4481:22;;270:4;258:17;;254:27;-1:-1;244:2;;-1:-1;;285:12;244:2;332:6;319:20;354:80;369:64;426:6;369:64;:::i;:::-;354:80;:::i;:::-;462:21;;;519:14;;;;494:17;;;608;;;599:27;;;;596:36;-1:-1;593:2;;;-1:-1;;635:12;593:2;-1:-1;661:10;;655:206;680:6;677:1;674:13;655:206;;;760:37;793:3;781:10;760:37;:::i;:::-;748:50;;702:1;695:9;;;;;812:14;;;;840;;655:206;;;-1:-1;4425:88;4243:286;-1:-1;;;;;;;4243:286::o;4536:241::-;;4640:2;4628:9;4619:7;4615:23;4611:32;4608:2;;;-1:-1;;4646:12;4608:2;-1:-1;1079:20;;4602:175;-1:-1;4602:175::o;14905:659::-;-1:-1;;;8908:87;;8893:1;9014:11;;6256:37;;;;15416:12;;;6256:37;15527:12;;;15150:414::o;15571:222::-;-1:-1;;;;;30641:54;;;;5176:37;;15698:2;15683:18;;15669:124::o;16045:370::-;16222:2;16236:47;;;29512:12;;16207:18;;;29916:19;;;16045:370;;16222:2;29366:14;;;;29956;;;;16045:370;5784:260;5809:6;5806:1;5803:13;5784:260;;;5870:13;;-1:-1;;;;;30641:54;5176:37;;29771:14;;;;4938;;;;30652:42;5824:9;5784:260;;;-1:-1;16289:116;;16193:222;-1:-1;;;;;;16193:222::o;16422:210::-;30474:13;;30467:21;6139:34;;16543:2;16528:18;;16514:118::o;16639:222::-;6256:37;;;16766:2;16751:18;;16737:124::o;16868:556::-;6256:37;;;-1:-1;;;;;30641:54;;;;17244:2;17229:18;;5176:37;17327:2;17312:18;;6256:37;17410:2;17395:18;;6256:37;17079:3;17064:19;;17050:374::o;17431:556::-;6256:37;;;17807:2;17792:18;;6256:37;;;;17890:2;17875:18;;6256:37;-1:-1;;;;;30641:54;17973:2;17958:18;;5176:37;17642:3;17627:19;;17613:374::o;17994:548::-;6256:37;;;30952:4;30941:16;;;;18362:2;18347:18;;14858:35;18445:2;18430:18;;6256:37;18528:2;18513:18;;6256:37;18201:3;18186:19;;18172:370::o;18549:310::-;;18696:2;;18717:17;18710:47;6609:5;29512:12;29928:6;18696:2;18685:9;18681:18;29916:19;-1:-1;31421:101;31435:6;31432:1;31429:13;31421:101;;;31502:11;;;;;31496:18;31483:11;;;29956:14;31483:11;31476:39;31450:10;;31421:101;;;31537:6;31534:1;31531:13;31528:2;;;-1:-1;29956:14;31593:6;18685:9;31584:16;;31577:27;31528:2;-1:-1;31790:7;31774:14;-1:-1;;31770:28;6767:39;;;;29956:14;6767:39;;18667:192;-1:-1;;;18667:192::o;18866:416::-;19066:2;19080:47;;;7043:2;19051:18;;;29916:19;7079:34;29956:14;;;7059:55;-1:-1;;;7134:12;;;7127:27;7173:12;;;19037:245::o;19289:416::-;19489:2;19503:47;;;7424:2;19474:18;;;29916:19;-1:-1;;;29956:14;;;7440:43;7502:12;;;19460:245::o;19712:416::-;19912:2;19926:47;;;7753:2;19897:18;;;29916:19;7789:33;29956:14;;;7769:54;7842:12;;;19883:245::o;20135:416::-;20335:2;20349:47;;;8093:2;20320:18;;;29916:19;8129:34;29956:14;;;8109:55;-1:-1;;;8184:12;;;8177:30;8226:12;;;20306:245::o;20558:416::-;20758:2;20772:47;;;8477:2;20743:18;;;29916:19;8513:34;29956:14;;;8493:55;-1:-1;;;8568:12;;;8561:26;8606:12;;;20729:245::o;20981:416::-;21181:2;21195:47;;;9264:2;21166:18;;;29916:19;9300:29;29956:14;;;9280:50;9349:12;;;21152:245::o;21404:416::-;21604:2;21618:47;;;9600:2;21589:18;;;29916:19;9636:32;29956:14;;;9616:53;9688:12;;;21575:245::o;21827:416::-;22027:2;22041:47;;;9939:2;22012:18;;;29916:19;-1:-1;;;29956:14;;;9955:39;10013:12;;;21998:245::o;22250:416::-;22450:2;22464:47;;;10264:2;22435:18;;;29916:19;10300:34;29956:14;;;10280:55;-1:-1;;;10355:12;;;10348:40;10407:12;;;22421:245::o;22673:416::-;22873:2;22887:47;;;10658:2;22858:18;;;29916:19;10694:34;29956:14;;;10674:55;-1:-1;;;10749:12;;;10742:25;10786:12;;;22844:245::o;23096:416::-;23296:2;23310:47;;;11037:2;23281:18;;;29916:19;11073:34;29956:14;;;11053:55;-1:-1;;;11128:12;;;11121:27;11167:12;;;23267:245::o;23519:416::-;23719:2;23733:47;;;11418:2;23704:18;;;29916:19;11454:34;29956:14;;;11434:55;-1:-1;;;11509:12;;;11502:31;11552:12;;;23690:245::o;23942:416::-;24142:2;24156:47;;;24127:18;;;29916:19;11839:34;29956:14;;;11819:55;11893:12;;;24113:245::o;24365:416::-;24565:2;24579:47;;;12144:2;24550:18;;;29916:19;12180:34;29956:14;;;12160:55;-1:-1;;;12235:12;;;12228:26;12273:12;;;24536:245::o;24788:416::-;24988:2;25002:47;;;12524:2;24973:18;;;29916:19;12560:34;29956:14;;;12540:55;-1:-1;;;12615:12;;;12608:25;12652:12;;;24959:245::o;25211:416::-;25411:2;25425:47;;;12903:2;25396:18;;;29916:19;12939:34;29956:14;;;12919:55;-1:-1;;;12994:12;;;12987:29;13035:12;;;25382:245::o;25634:416::-;25834:2;25848:47;;;13286:2;25819:18;;;29916:19;13322:34;29956:14;;;13302:55;-1:-1;;;13377:12;;;13370:28;13417:12;;;25805:245::o;26057:416::-;26257:2;26271:47;;;13668:2;26242:18;;;29916:19;13704:34;29956:14;;;13684:55;-1:-1;;;13759:12;;;13752:32;13803:12;;;26228:245::o;26480:416::-;26680:2;26694:47;;;14054:2;26665:18;;;29916:19;14090:33;29956:14;;;14070:54;14143:12;;;26651:245::o;26903:416::-;27103:2;27117:47;;;14394:2;27088:18;;;29916:19;14430:34;29956:14;;;14410:55;-1:-1;;;14485:12;;;14478:31;14528:12;;;27074:245::o;27555:333::-;6256:37;;;27874:2;27859:18;;6256:37;27710:2;27695:18;;27681:207::o;27895:218::-;30858:10;30847:22;;;;14743:36;;28020:2;28005:18;;27991:122::o;28120:329::-;30858:10;30847:22;;;;14743:36;;28435:2;28420:18;;6256:37;28273:2;28258:18;;28244:205::o;28456:214::-;30952:4;30941:16;;;;14858:35;;28579:2;28564:18;;28550:120::o;28677:256::-;28739:2;28733:9;28765:17;;;28840:18;28825:34;;28861:22;;;28822:62;28819:2;;;28897:1;;28887:12;28819:2;28739;28906:22;28717:216;;-1:-1;28717:216::o;28940:304::-;;29099:18;29091:6;29088:30;29085:2;;;-1:-1;;29121:12;29085:2;-1:-1;29166:4;29154:17;;;29219:15;;29022:222::o;31811:117::-;-1:-1;;;;;30641:54;;31870:35;;31860:2;;31919:1;;31909:12

Swarm Source

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