ETH Price: $3,400.37 (-0.49%)
Gas: 15 Gwei

Token

Union Capital (UNIC)
 

Overview

Max Total Supply

1,000,000 UNIC

Holders

504

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
moelnaggar.eth
Balance
1,000 UNIC

Value
$0.00
0x38f50d4086b8a4bf68238dff96a2fd406e9e2fea
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:
UnionCapitalToken

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-13
*/

// Partial License: MIT
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.7.5;


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
        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:
     * 
     *
     * 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, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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



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

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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     *
     * 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.
     *
     * 
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     */
    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,
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

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

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

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

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

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

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




/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;
    address private _midWayOwner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    
    /**
     * @dev Throws if called by any account other than the _midWayOwnerowner.
     */
    modifier onlyMidWayOwner() {
        require(_midWayOwner == _msgSender(), "Ownable: caller is not the Mid Way 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");
        _midWayOwner = newOwner;
    }
    
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function recieveOwnership() public virtual onlyMidWayOwner {
        emit OwnershipTransferred(_owner, _midWayOwner);
        _owner = _midWayOwner;
    }
}


/**
 * We have updated this contract to implement the openzeppelin Ownable standard.
 * We have updated the contract from 0.7.5;
 */





/**
 * @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 {_}.
 * 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 DeflationaryERC20 is Context, IERC20, Ownable {
    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;

    // Transaction Fees:
    uint8 public constant txFee = 50; // 5% fees
    address public feeDistributor; // fees are sent to fee distributer
    // Fee Whitelist
    mapping(address => bool) public feelessSender;
    mapping(address => bool) public feelessReciever;
    // if this equals false whitelist can nolonger be added to.
    bool public canWhitelist = true;

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

    
    // assign a new fee distributor address
    function setFeeDistributor(address _distributor) public onlyOwner {
        feeDistributor = _distributor;
    }
    
    
     // enable/disable sender who can send feeless transactions
    function setFeelessSender(address _sender, bool _feeless) public onlyOwner {
        require(!_feeless || _feeless && canWhitelist, "cannot add to whitelist");
        feelessSender[_sender] = _feeless;
    }

    // enable/disable recipient who can reccieve feeless transactions
    function setFeelessReciever(address _recipient, bool _feeless) public onlyOwner {
        require(!_feeless || _feeless && canWhitelist, "cannot add to whitelist");
        feelessReciever[_recipient] = _feeless;
    }

    // disable adding to whitelist forever
    function renounceWhitelist() public onlyOwner {
        // adding to whitelist has been disabled forever:
        canWhitelist = false;
    }

    // to caclulate the amounts for recipient and distributer after fees have been applied
    function calculateAmountsAfterFee(
        address sender,
        address recipient,
        uint256 amount
    ) public view returns (uint256, uint256) {

        if (feelessSender[sender] || feelessReciever[recipient]) {
            return (amount, 0);
        }

        // calculate fees and amounts
        uint256 fee = amount.mul(txFee).div(1000);
        return (amount.sub(fee), fee);
    }

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

        // subtract send balanced
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");

        // calculate fee:
        (uint256 transferToAmount, uint256 transferToFeeDistributorAmount) = calculateAmountsAfterFee(sender, recipient, amount);

        // update recipients balance:
        _balances[recipient] = _balances[recipient].add(transferToAmount);
        emit Transfer(sender, recipient, transferToAmount);

        // update distributers balance:
        if(transferToFeeDistributorAmount > 0 && feeDistributor != address(0)){
            _balances[feeDistributor] = _balances[feeDistributor].add(transferToFeeDistributorAmount);
            emit Transfer(sender, feeDistributor, transferToFeeDistributorAmount);
       }
    }

    /** @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 _transferToOwner(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

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

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

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

        _allowances[_owner][_spender] = _amount;
        emit Approval(_owner, _spender, _amount);
    }


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


contract UnionCapitalToken is DeflationaryERC20 {

    constructor() DeflationaryERC20("Union Capital", "UNIC") {
        
        _transferToOwner(msg.sender, 1000000e18);
    }

    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateAmountsAfterFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"feeDistributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feelessReciever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feelessSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recieveOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_distributor","type":"address"}],"name":"setFeeDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"bool","name":"_feeless","type":"bool"}],"name":"setFeelessReciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"bool","name":"_feeless","type":"bool"}],"name":"setFeelessSender","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":"txFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]

6080604052600a805460ff191660011790553480156200001e57600080fd5b506040518060400160405280600d81526020016c155b9a5bdb8810d85c1a5d185b609a1b81525060405180604001604052806004815260200163554e494360e01b815250620000726200013360201b60201c565b600080546001600160a01b0319166001600160a01b03929092169190911790556200009c62000133565b6001600160a01b031660006001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38151620000f1906005906020850190620002b1565b50805162000107906006906020840190620002b1565b50506007805460ff19166012179055506200012d3369d3c21bcecceda100000062000137565b6200035d565b3390565b6001600160a01b03821662000193576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001a1600083836200024a565b620001bd816004546200024f60201b62000dbe1790919060201c565b6004556001600160a01b038216600090815260026020908152604090912054620001f291839062000dbe6200024f821b17901c565b6001600160a01b03831660008181526002602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002aa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620002e9576000855562000334565b82601f106200030457805160ff191683800117855562000334565b8280016001018555821562000334579182015b828111156200033457825182559160200191906001019062000317565b506200034292915062000346565b5090565b5b8082111562000342576000815560010162000347565b61168b806200036d6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063cf82046111610071578063cf820461146104f0578063dd62ed3e146104f8578063e75d7b0414610526578063f2fde38b1461052e5761018e565b8063a9059cbb14610496578063ac810084146104c2578063ccfc2e8d146104ca5761018e565b8063715018a6146103f657806383fbca34146103fe5780638da5cb5b1461042c57806395d89b4114610434578063a056735d1461043c578063a457c2d71461046a5761018e565b8063301a58011161014b5780633950935111610125578063395093511461036157806342966c681461038d5780634a6f01b1146103aa57806370a08231146103d05761018e565b8063301a5801146102ea578063313ce5671461033957806339137f8b146103575761018e565b806306fdde0314610193578063095ea7b3146102105780630d43e8ad1461025057806318160ddd146102745780631dd17c321461028e57806323b872dd146102b4575b600080fd5b61019b610554565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b0381351690602001356105ea565b604080519115158252519081900360200190f35b610258610608565b604080516001600160a01b039092168252519081900360200190f35b61027c61061c565b60408051918252519081900360200190f35b61023c600480360360208110156102a457600080fd5b50356001600160a01b0316610622565b61023c600480360360608110156102ca57600080fd5b506001600160a01b03813581169160208101359091169060400135610637565b6103206004803603606081101561030057600080fd5b506001600160a01b038135811691602081013590911690604001356106be565b6040805192835260208301919091528051918290030190f35b610341610741565b6040805160ff9092168252519081900360200190f35b61035f61074a565b005b61023c6004803603604081101561037757600080fd5b506001600160a01b0381351690602001356107ae565b61035f600480360360208110156103a357600080fd5b50356107fc565b61023c600480360360208110156103c057600080fd5b50356001600160a01b0316610809565b61027c600480360360208110156103e657600080fd5b50356001600160a01b031661081e565b61035f610839565b61035f6004803603604081101561041457600080fd5b506001600160a01b03813516906020013515156108db565b6102586109c0565b61019b6109cf565b61035f6004803603604081101561045257600080fd5b506001600160a01b0381351690602001351515610a30565b61023c6004803603604081101561048057600080fd5b506001600160a01b038135169060200135610b15565b61023c600480360360408110156104ac57600080fd5b506001600160a01b038135169060200135610b7d565b61035f610b91565b61035f600480360360208110156104e057600080fd5b50356001600160a01b0316610c46565b610341610cc6565b61027c6004803603604081101561050e57600080fd5b506001600160a01b0381358116916020013516610ccb565b61023c610cf6565b61035f6004803603602081101561054457600080fd5b50356001600160a01b0316610cff565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b60006105fe6105f7610e1f565b8484610e23565b5060015b92915050565b60075461010090046001600160a01b031681565b60045490565b60096020526000908152604090205460ff1681565b6000610644848484610f0f565b6106b484610650610e1f565b6106af8560405180606001604052806028815260200161157f602891396001600160a01b038a1660009081526003602052604081209061068e610e1f565b6001600160a01b031681526020810191909152604001600020549190611187565b610e23565b5060019392505050565b6001600160a01b038316600090815260086020526040812054819060ff16806106ff57506001600160a01b03841660009081526009602052604090205460ff165b1561070f57508190506000610739565b60006107286103e861072286603261121e565b90611277565b905061073484826112b9565b925090505b935093915050565b60075460ff1690565b610752610e1f565b6000546001600160a01b039081169116146107a2576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b600a805460ff19169055565b60006105fe6107bb610e1f565b846106af85600360006107cc610e1f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610dbe565b61080633826112fb565b50565b60086020526000908152604090205460ff1681565b6001600160a01b031660009081526002602052604090205490565b610841610e1f565b6000546001600160a01b03908116911614610891576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6108e3610e1f565b6000546001600160a01b03908116911614610933576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b80158061094a575080801561094a5750600a5460ff165b610995576040805162461bcd60e51b815260206004820152601760248201527618d85b9b9bdd08185919081d1bc81dda1a5d195b1a5cdd604a1b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105e05780601f106105b5576101008083540402835291602001916105e0565b610a38610e1f565b6000546001600160a01b03908116911614610a88576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b801580610a9f5750808015610a9f5750600a5460ff165b610aea576040805162461bcd60e51b815260206004820152601760248201527618d85b9b9bdd08185919081d1bc81dda1a5d195b1a5cdd604a1b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b60006105fe610b22610e1f565b846106af856040518060600160405280602581526020016116316025913960036000610b4c610e1f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611187565b60006105fe610b8a610e1f565b8484610f0f565b610b99610e1f565b6001546001600160a01b03908116911614610be55760405162461bcd60e51b81526004018080602001828103825260288152602001806115366028913960400191505060405180910390fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b610c4e610e1f565b6000546001600160a01b03908116911614610c9e576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b603281565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b600a5460ff1681565b610d07610e1f565b6000546001600160a01b03908116911614610d57576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b6001600160a01b038116610d9c5760405162461bcd60e51b81526004018080602001828103825260268152602001806114a76026913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610e18576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610e685760405162461bcd60e51b815260040180806020018281038252602481526020018061160d6024913960400191505060405180910390fd5b6001600160a01b038216610ead5760405162461bcd60e51b81526004018080602001828103825260228152602001806114cd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f545760405162461bcd60e51b81526004018080602001828103825260258152602001806115e86025913960400191505060405180910390fd5b6001600160a01b038216610f995760405162461bcd60e51b81526004018080602001828103825260238152602001806114626023913960400191505060405180910390fd5b6103e88111610fd95760405162461bcd60e51b81526004018080602001828103825260218152602001806114ef6021913960400191505060405180910390fd5b610fe48383836113f7565b61102181604051806060016040528060268152602001611510602691396001600160a01b0386166000908152600260205260409020549190611187565b6001600160a01b038416600090815260026020526040812091909155806110498585856106be565b6001600160a01b03861660009081526002602052604090205491935091506110719083610dbe565b6001600160a01b0380861660008181526002602090815260409182902094909455805186815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36000811180156110e7575060075461010090046001600160a01b031615155b156111805760075461010090046001600160a01b03166000908152600260205260409020546111169082610dbe565b600780546001600160a01b0361010091829004811660009081526002602090815260409182902095909555925483518681529351929004811693908916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35b5050505050565b600081848411156112165760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111db5781810151838201526020016111c3565b50505050905090810190601f1680156112085780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261122d57506000610602565b8282028284828161123a57fe5b0414610e185760405162461bcd60e51b815260040180806020018281038252602181526020018061155e6021913960400191505060405180910390fd5b6000610e1883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113fc565b6000610e1883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611187565b6001600160a01b0382166113405760405162461bcd60e51b81526004018080602001828103825260218152602001806115c76021913960400191505060405180910390fd5b61134c826000836113f7565b61138981604051806060016040528060228152602001611485602291396001600160a01b0385166000908152600260205260409020549190611187565b6001600160a01b0383166000908152600260205260409020556004546113af90826112b9565b6004556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b6000818361144b5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111db5781810151838201526020016111c3565b50600083858161145757fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373616d6f756e7420746f20736d616c6c2c206d617468732077696c6c20627265616b45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865204d696420576179204f776e6572536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a1dbcb946f2c122fade03b55faf6fa7b4854d2aec532446db53cb52592e8138c64736f6c63430007050033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063cf82046111610071578063cf820461146104f0578063dd62ed3e146104f8578063e75d7b0414610526578063f2fde38b1461052e5761018e565b8063a9059cbb14610496578063ac810084146104c2578063ccfc2e8d146104ca5761018e565b8063715018a6146103f657806383fbca34146103fe5780638da5cb5b1461042c57806395d89b4114610434578063a056735d1461043c578063a457c2d71461046a5761018e565b8063301a58011161014b5780633950935111610125578063395093511461036157806342966c681461038d5780634a6f01b1146103aa57806370a08231146103d05761018e565b8063301a5801146102ea578063313ce5671461033957806339137f8b146103575761018e565b806306fdde0314610193578063095ea7b3146102105780630d43e8ad1461025057806318160ddd146102745780631dd17c321461028e57806323b872dd146102b4575b600080fd5b61019b610554565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b0381351690602001356105ea565b604080519115158252519081900360200190f35b610258610608565b604080516001600160a01b039092168252519081900360200190f35b61027c61061c565b60408051918252519081900360200190f35b61023c600480360360208110156102a457600080fd5b50356001600160a01b0316610622565b61023c600480360360608110156102ca57600080fd5b506001600160a01b03813581169160208101359091169060400135610637565b6103206004803603606081101561030057600080fd5b506001600160a01b038135811691602081013590911690604001356106be565b6040805192835260208301919091528051918290030190f35b610341610741565b6040805160ff9092168252519081900360200190f35b61035f61074a565b005b61023c6004803603604081101561037757600080fd5b506001600160a01b0381351690602001356107ae565b61035f600480360360208110156103a357600080fd5b50356107fc565b61023c600480360360208110156103c057600080fd5b50356001600160a01b0316610809565b61027c600480360360208110156103e657600080fd5b50356001600160a01b031661081e565b61035f610839565b61035f6004803603604081101561041457600080fd5b506001600160a01b03813516906020013515156108db565b6102586109c0565b61019b6109cf565b61035f6004803603604081101561045257600080fd5b506001600160a01b0381351690602001351515610a30565b61023c6004803603604081101561048057600080fd5b506001600160a01b038135169060200135610b15565b61023c600480360360408110156104ac57600080fd5b506001600160a01b038135169060200135610b7d565b61035f610b91565b61035f600480360360208110156104e057600080fd5b50356001600160a01b0316610c46565b610341610cc6565b61027c6004803603604081101561050e57600080fd5b506001600160a01b0381358116916020013516610ccb565b61023c610cf6565b61035f6004803603602081101561054457600080fd5b50356001600160a01b0316610cff565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b60006105fe6105f7610e1f565b8484610e23565b5060015b92915050565b60075461010090046001600160a01b031681565b60045490565b60096020526000908152604090205460ff1681565b6000610644848484610f0f565b6106b484610650610e1f565b6106af8560405180606001604052806028815260200161157f602891396001600160a01b038a1660009081526003602052604081209061068e610e1f565b6001600160a01b031681526020810191909152604001600020549190611187565b610e23565b5060019392505050565b6001600160a01b038316600090815260086020526040812054819060ff16806106ff57506001600160a01b03841660009081526009602052604090205460ff165b1561070f57508190506000610739565b60006107286103e861072286603261121e565b90611277565b905061073484826112b9565b925090505b935093915050565b60075460ff1690565b610752610e1f565b6000546001600160a01b039081169116146107a2576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b600a805460ff19169055565b60006105fe6107bb610e1f565b846106af85600360006107cc610e1f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610dbe565b61080633826112fb565b50565b60086020526000908152604090205460ff1681565b6001600160a01b031660009081526002602052604090205490565b610841610e1f565b6000546001600160a01b03908116911614610891576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6108e3610e1f565b6000546001600160a01b03908116911614610933576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b80158061094a575080801561094a5750600a5460ff165b610995576040805162461bcd60e51b815260206004820152601760248201527618d85b9b9bdd08185919081d1bc81dda1a5d195b1a5cdd604a1b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105e05780601f106105b5576101008083540402835291602001916105e0565b610a38610e1f565b6000546001600160a01b03908116911614610a88576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b801580610a9f5750808015610a9f5750600a5460ff165b610aea576040805162461bcd60e51b815260206004820152601760248201527618d85b9b9bdd08185919081d1bc81dda1a5d195b1a5cdd604a1b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b60006105fe610b22610e1f565b846106af856040518060600160405280602581526020016116316025913960036000610b4c610e1f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611187565b60006105fe610b8a610e1f565b8484610f0f565b610b99610e1f565b6001546001600160a01b03908116911614610be55760405162461bcd60e51b81526004018080602001828103825260288152602001806115366028913960400191505060405180910390fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b610c4e610e1f565b6000546001600160a01b03908116911614610c9e576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b603281565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b600a5460ff1681565b610d07610e1f565b6000546001600160a01b03908116911614610d57576040805162461bcd60e51b815260206004820181905260248201526000805160206115a7833981519152604482015290519081900360640190fd5b6001600160a01b038116610d9c5760405162461bcd60e51b81526004018080602001828103825260268152602001806114a76026913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610e18576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610e685760405162461bcd60e51b815260040180806020018281038252602481526020018061160d6024913960400191505060405180910390fd5b6001600160a01b038216610ead5760405162461bcd60e51b81526004018080602001828103825260228152602001806114cd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f545760405162461bcd60e51b81526004018080602001828103825260258152602001806115e86025913960400191505060405180910390fd5b6001600160a01b038216610f995760405162461bcd60e51b81526004018080602001828103825260238152602001806114626023913960400191505060405180910390fd5b6103e88111610fd95760405162461bcd60e51b81526004018080602001828103825260218152602001806114ef6021913960400191505060405180910390fd5b610fe48383836113f7565b61102181604051806060016040528060268152602001611510602691396001600160a01b0386166000908152600260205260409020549190611187565b6001600160a01b038416600090815260026020526040812091909155806110498585856106be565b6001600160a01b03861660009081526002602052604090205491935091506110719083610dbe565b6001600160a01b0380861660008181526002602090815260409182902094909455805186815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36000811180156110e7575060075461010090046001600160a01b031615155b156111805760075461010090046001600160a01b03166000908152600260205260409020546111169082610dbe565b600780546001600160a01b0361010091829004811660009081526002602090815260409182902095909555925483518681529351929004811693908916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35b5050505050565b600081848411156112165760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111db5781810151838201526020016111c3565b50505050905090810190601f1680156112085780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261122d57506000610602565b8282028284828161123a57fe5b0414610e185760405162461bcd60e51b815260040180806020018281038252602181526020018061155e6021913960400191505060405180910390fd5b6000610e1883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113fc565b6000610e1883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611187565b6001600160a01b0382166113405760405162461bcd60e51b81526004018080602001828103825260218152602001806115c76021913960400191505060405180910390fd5b61134c826000836113f7565b61138981604051806060016040528060228152602001611485602291396001600160a01b0385166000908152600260205260409020549190611187565b6001600160a01b0383166000908152600260205260409020556004546113af90826112b9565b6004556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b6000818361144b5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111db5781810151838201526020016111c3565b50600083858161145757fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373616d6f756e7420746f20736d616c6c2c206d617468732077696c6c20627265616b45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865204d696420576179204f776e6572536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a1dbcb946f2c122fade03b55faf6fa7b4854d2aec532446db53cb52592e8138c64736f6c63430007050033

Deployed Bytecode Sourcemap

29642:275:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19097:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21207:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21207:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18255:29;;;:::i;:::-;;;;-1:-1:-1;;;;;18255:29:0;;;;;;;;;;;;;;20172:100;;;:::i;:::-;;;;;;;;;;;;;;;;18401:47;;;;;;;;;;;;;;;;-1:-1:-1;18401:47:0;-1:-1:-1;;;;;18401:47:0;;:::i;21850:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21850:321:0;;;;;;;;;;;;;;;;;:::i;24633:413::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24633:413:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20024:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24389:144;;;:::i;:::-;;22580:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22580:218:0;;;;;;;;:::i;29833:81::-;;;;;;;;;;;;;;;;-1:-1:-1;29833:81:0;;:::i;18349:45::-;;;;;;;;;;;;;;;;-1:-1:-1;18349:45:0;-1:-1:-1;;;;;18349:45:0;;:::i;20335:119::-;;;;;;;;;;;;;;;;-1:-1:-1;20335:119:0;-1:-1:-1;;;;;20335:119:0;;:::i;15640:148::-;;;:::i;24116:221::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24116:221:0;;;;;;;;;;:::i;14750:79::-;;;:::i;19299:87::-;;;:::i;23826:211::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23826:211:0;;;;;;;;;;:::i;23301:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23301:269:0;;;;;;;;:::i;20667:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20667:175:0;;;;;;;;:::i;16298:157::-;;;:::i;23629:114::-;;;;;;;;;;;;;;;;-1:-1:-1;23629:114:0;-1:-1:-1;;;;;23629:114:0;;:::i;18205:32::-;;;:::i;20905:155::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20905:155:0;;;;;;;;;;:::i;18520:31::-;;;:::i;15943:196::-;;;;;;;;;;;;;;;;-1:-1:-1;15943:196:0;-1:-1:-1;;;;;15943:196:0;;:::i;19097:83::-;19167:5;19160:12;;;;;;;;-1:-1:-1;;19160:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19134:13;;19160:12;;19167:5;;19160:12;;19167:5;19160:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19097:83;:::o;21207:169::-;21290:4;21307:39;21316:12;:10;:12::i;:::-;21330:7;21339:6;21307:8;:39::i;:::-;-1:-1:-1;21364:4:0;21207:169;;;;;:::o;18255:29::-;;;;;;-1:-1:-1;;;;;18255:29:0;;:::o;20172:100::-;20252:12;;20172:100;:::o;18401:47::-;;;;;;;;;;;;;;;:::o;21850:321::-;21956:4;21973:36;21983:6;21991:9;22002:6;21973:9;:36::i;:::-;22020:121;22029:6;22037:12;:10;:12::i;:::-;22051:89;22089:6;22051:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22051:19:0;;;;;;:11;:19;;;;;;22071:12;:10;:12::i;:::-;-1:-1:-1;;;;;22051:33:0;;;;;;;;;;;;-1:-1:-1;22051:33:0;;;:89;:37;:89::i;:::-;22020:8;:121::i;:::-;-1:-1:-1;22159:4:0;21850:321;;;;;:::o;24633:413::-;-1:-1:-1;;;;;24808:21:0;;24773:7;24808:21;;;:13;:21;;;;;;24773:7;;24808:21;;;:51;;-1:-1:-1;;;;;;24833:26:0;;;;;;:15;:26;;;;;;;;24808:51;24804:102;;;-1:-1:-1;24884:6:0;;-1:-1:-1;24892:1:0;24876:18;;24804:102;24957:11;24971:27;24993:4;24971:17;:6;18235:2;24971:10;:17::i;:::-;:21;;:27::i;:::-;24957:41;-1:-1:-1;25017:15:0;:6;24957:41;25017:10;:15::i;:::-;25009:29;-1:-1:-1;25034:3:0;-1:-1:-1;24633:413:0;;;;;;;:::o;20024:83::-;20090:9;;;;20024:83;:::o;24389:144::-;14972:12;:10;:12::i;:::-;14962:6;;-1:-1:-1;;;;;14962:6:0;;;:22;;;14954:67;;;;;-1:-1:-1;;;14954:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14954:67:0;;;;;;;;;;;;;;;24505:12:::1;:20:::0;;-1:-1:-1;;24505:20:0::1;::::0;;24389:144::o;22580:218::-;22668:4;22685:83;22694:12;:10;:12::i;:::-;22708:7;22717:50;22756:10;22717:11;:25;22729:12;:10;:12::i;:::-;-1:-1:-1;;;;;22717:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22717:25:0;;;:34;;;;;;;;;;;:38;:50::i;29833:81::-;29881:25;29887:10;29899:6;29881:5;:25::i;:::-;29833:81;:::o;18349:45::-;;;;;;;;;;;;;;;:::o;20335:119::-;-1:-1:-1;;;;;20428:18:0;20401:7;20428:18;;;:9;:18;;;;;;;20335:119::o;15640:148::-;14972:12;:10;:12::i;:::-;14962:6;;-1:-1:-1;;;;;14962:6:0;;;:22;;;14954:67;;;;;-1:-1:-1;;;14954:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14954:67:0;;;;;;;;;;;;;;;15747:1:::1;15731:6:::0;;15710:40:::1;::::0;-1:-1:-1;;;;;15731:6:0;;::::1;::::0;15710:40:::1;::::0;15747:1;;15710:40:::1;15778:1;15761:19:::0;;-1:-1:-1;;;;;;15761:19:0::1;::::0;;15640:148::o;24116:221::-;14972:12;:10;:12::i;:::-;14962:6;;-1:-1:-1;;;;;14962:6:0;;;:22;;;14954:67;;;;;-1:-1:-1;;;14954:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14954:67:0;;;;;;;;;;;;;;;24216:8:::1;24215:9;:37;;;;24228:8;:24;;;;-1:-1:-1::0;24240:12:0::1;::::0;::::1;;24228:24;24207:73;;;::::0;;-1:-1:-1;;;24207:73:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;24207:73:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;24291:27:0;;;::::1;;::::0;;;:15:::1;:27;::::0;;;;:38;;-1:-1:-1;;24291:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24116:221::o;14750:79::-;14788:7;14815:6;-1:-1:-1;;;;;14815:6:0;14750:79;:::o;19299:87::-;19371:7;19364:14;;;;;;;;-1:-1:-1;;19364:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19338:13;;19364:14;;19371:7;;19364:14;;19371:7;19364:14;;;;;;;;;;;;;;;;;;;;;;;;23826:211;14972:12;:10;:12::i;:::-;14962:6;;-1:-1:-1;;;;;14962:6:0;;;:22;;;14954:67;;;;;-1:-1:-1;;;14954:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14954:67:0;;;;;;;;;;;;;;;23921:8:::1;23920:9;:37;;;;23933:8;:24;;;;-1:-1:-1::0;23945:12:0::1;::::0;::::1;;23933:24;23912:73;;;::::0;;-1:-1:-1;;;23912:73:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;23912:73:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;23996:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:33;;-1:-1:-1;;23996:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23826:211::o;23301:269::-;23394:4;23411:129;23420:12;:10;:12::i;:::-;23434:7;23443:96;23482:15;23443:96;;;;;;;;;;;;;;;;;:11;:25;23455:12;:10;:12::i;:::-;-1:-1:-1;;;;;23443:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23443:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;20667:175::-;20753:4;20770:42;20780:12;:10;:12::i;:::-;20794:9;20805:6;20770:9;:42::i;16298:157::-;15212:12;:10;:12::i;:::-;15196;;-1:-1:-1;;;;;15196:12:0;;;:28;;;15188:81;;;;-1:-1:-1;;;15188:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16402:12:::1;::::0;::::1;16394:6:::0;;16373:42:::1;::::0;-1:-1:-1;;;;;16402:12:0;;::::1;::::0;16394:6;;::::1;::::0;16373:42:::1;::::0;::::1;16435:12;::::0;::::1;16426:21:::0;;-1:-1:-1;;;;;;16426:21:0::1;-1:-1:-1::0;;;;;16435:12:0;;::::1;16426:21:::0;;;::::1;::::0;;16298:157::o;23629:114::-;14972:12;:10;:12::i;:::-;14962:6;;-1:-1:-1;;;;;14962:6:0;;;:22;;;14954:67;;;;;-1:-1:-1;;;14954:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14954:67:0;;;;;;;;;;;;;;;23706:14:::1;:29:::0;;-1:-1:-1;;;;;23706:29:0;;::::1;;;-1:-1:-1::0;;;;;;23706:29:0;;::::1;::::0;;;::::1;::::0;;23629:114::o;18205:32::-;18235:2;18205:32;:::o;20905:155::-;-1:-1:-1;;;;;21023:19:0;;;20996:7;21023:19;;;:11;:19;;;;;;;;:29;;;;;;;;;;;;;20905:155::o;18520:31::-;;;;;;:::o;15943:196::-;14972:12;:10;:12::i;:::-;14962:6;;-1:-1:-1;;;;;14962:6:0;;;:22;;;14954:67;;;;;-1:-1:-1;;;14954:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14954:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16032:22:0;::::1;16024:73;;;;-1:-1:-1::0;;;16024:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16108:12;:23:::0;;-1:-1:-1;;;;;;16108:23:0::1;-1:-1:-1::0;;;;;16108:23:0;;;::::1;::::0;;;::::1;::::0;;15943:196::o;3918:181::-;3976:7;4008:5;;;4032:6;;;;4024:46;;;;;-1:-1:-1;;;4024:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4090:1;3918:181;-1:-1:-1;;;3918:181:0:o;125:106::-;213:10;125:106;:::o;28579:357::-;-1:-1:-1;;;;;28684:20:0;;28676:69;;;;-1:-1:-1;;;28676:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28764:22:0;;28756:69;;;;-1:-1:-1;;;28756:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28838:19:0;;;;;;;:11;:19;;;;;;;;:29;;;;;;;;;;;;;:39;;;28893:35;;;;;;;;;;;;;;;;;28579:357;;;:::o;25536:1185::-;-1:-1:-1;;;;;25642:20:0;;25634:70;;;;-1:-1:-1;;;25634:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25723:23:0;;25715:71;;;;-1:-1:-1;;;25715:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25814:4;25805:6;:13;25797:59;;;;-1:-1:-1;;;25797:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25867:47;25888:6;25896:9;25907:6;25867:20;:47::i;:::-;25982:71;26004:6;25982:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25982:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;25962:17:0;;;;;;:9;:17;;;;;:91;;;;:17;26162:51;25972:6;26195:9;26206:6;26162:24;:51::i;:::-;-1:-1:-1;;;;;26288:20:0;;;;;;:9;:20;;;;;;26093:120;;-1:-1:-1;26093:120:0;-1:-1:-1;26288:42:0;;26093:120;26288:24;:42::i;:::-;-1:-1:-1;;;;;26265:20:0;;;;;;;:9;:20;;;;;;;;;:65;;;;26346:45;;;;;;;26265:20;;26346:45;;;;;;;;;;;;;26481:1;26448:30;:34;:66;;;;-1:-1:-1;26486:14:0;;;;;-1:-1:-1;;;;;26486:14:0;:28;;26448:66;26445:269;;;26568:14;;;;;-1:-1:-1;;;;;26568:14:0;26558:25;;;;:9;:25;;;;;;:61;;26588:30;26558:29;:61::i;:::-;26540:14;;;-1:-1:-1;;;;;26540:14:0;;;;;;;26530:25;;;;:9;:25;;;;;;;;;:89;;;;26656:14;;26639:64;;;;;;;26656:14;;;;;;26639:64;;;;;;;;;;;;;;;26445:269;25536:1185;;;;;:::o;4821:192::-;4907:7;4943:12;4935:6;;;;4927:29;;;;-1:-1:-1;;;4927:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4979:5:0;;;4821:192::o;5272:400::-;5330:7;5504:6;5500:47;;-1:-1:-1;5534:1:0;5527:8;;5500:47;5571:5;;;5575:1;5571;:5;:1;5595:5;;;;;:10;5587:56;;;;-1:-1:-1;;;5587:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6148:132;6206:7;6233:39;6237:1;6240;6233:39;;;;;;;;;;;;;;;;;:3;:39::i;4382:136::-;4440:7;4467:43;4471:1;4474;4467:43;;;;;;;;;;;;;;;;;:3;:43::i;27723:418::-;-1:-1:-1;;;;;27807:21:0;;27799:67;;;;-1:-1:-1;;;27799:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27879:49;27900:7;27917:1;27921:6;27879:20;:49::i;:::-;27962:68;27985:6;27962:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27962:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;27941:18:0;;;;;;:9;:18;;;;;:89;28056:12;;:24;;28073:6;28056:16;:24::i;:::-;28041:12;:39;28096:37;;;;;;;;28122:1;;-1:-1:-1;;;;;28096:37:0;;;;;;;;;;;;27723:418;;:::o;29541:92::-;;;;:::o;6776:278::-;6862:7;6897:12;6890:5;6882:28;;;;-1:-1:-1;;;6882:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6921:9;6937:1;6933;:5;;;;;;;6776:278;-1:-1:-1;;;;;6776:278:0:o

Swarm Source

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