ETH Price: $2,624.49 (-0.24%)
Gas: 4 Gwei

Token

Union Capital V2 (UnicV2)
 

Overview

Max Total Supply

1,000,000 UnicV2

Holders

174

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
59.28 UnicV2

Value
$0.00
0x52cd28389076f1a3f171b381f85e38fb084d0424
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:
UnionCapitalTokenV2

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        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 UnionCapitalTokenV2 is DeflationaryERC20 {

    constructor() DeflationaryERC20("Union Capital V2", "UnicV2") {
        
        _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"}]

60806040526001600a60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280601081526020017f556e696f6e204361706974616c205632000000000000000000000000000000008152506040518060400160405280600681526020017f556e696356320000000000000000000000000000000000000000000000000000815250620000a9620001c460201b60201c565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000f8620001c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a381600590805190602001906200016a929190620003e5565b50806006908051906020019062000183929190620003e5565b506012600760006101000a81548160ff021916908360ff1602179055505050620001be3369d3c21bcecceda1000000620001cc60201b60201c565b62000697565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200023f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000236906200054c565b60405180910390fd5b62000253600083836200037d60201b60201c565b6200026f816004546200038260201b620013d21790919060201c565b600481905550620002ce81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200038260201b620013d21790919060201c565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037191906200056e565b60405180910390a35050565b505050565b60008082846200039391906200059c565b905083811015620003db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d2906200052a565b60405180910390fd5b8091505092915050565b828054620003f39062000603565b90600052602060002090601f01602090048101928262000417576000855562000463565b82601f106200043257805160ff191683800117855562000463565b8280016001018555821562000463579182015b828111156200046257825182559160200191906001019062000445565b5b50905062000472919062000476565b5090565b5b808211156200049157600081600090555060010162000477565b5090565b6000620004a4601b836200058b565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000620004e6601f836200058b565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200052481620005f9565b82525050565b60006020820190508181036000830152620005458162000495565b9050919050565b600060208201905081810360008301526200056781620004d7565b9050919050565b600060208201905062000585600083018462000519565b92915050565b600082825260208201905092915050565b6000620005a982620005f9565b9150620005b683620005f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005ee57620005ed62000639565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200061c57607f821691505b6020821081141562000633576200063262000668565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612a7380620006a76000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063cf82046111610071578063cf82046114610486578063dd62ed3e146104a4578063e75d7b04146104d4578063f2fde38b146104f25761018e565b8063a9059cbb14610430578063ac81008414610460578063ccfc2e8d1461046a5761018e565b8063715018a61461038257806383fbca341461038c5780638da5cb5b146103a857806395d89b41146103c6578063a056735d146103e4578063a457c2d7146104005761018e565b8063301a58011161014b578063395093511161012557806339509351146102d657806342966c68146103065780634a6f01b11461032257806370a08231146103525761018e565b8063301a58011461027d578063313ce567146102ae57806339137f8b146102cc5761018e565b806306fdde0314610193578063095ea7b3146101b15780630d43e8ad146101e157806318160ddd146101ff5780631dd17c321461021d57806323b872dd1461024d575b600080fd5b61019b61050e565b6040516101a891906124d9565b60405180910390f35b6101cb60048036038101906101c69190611f73565b6105a0565b6040516101d891906124be565b60405180910390f35b6101e96105be565b6040516101f691906124a3565b60405180910390f35b6102076105e4565b604051610214919061267b565b60405180910390f35b61023760048036038101906102329190611e83565b6105ee565b60405161024491906124be565b60405180910390f35b61026760048036038101906102629190611ee8565b61060e565b60405161027491906124be565b60405180910390f35b61029760048036038101906102929190611ee8565b6106e7565b6040516102a5929190612696565b60405180910390f35b6102b66107ed565b6040516102c391906126bf565b60405180910390f35b6102d4610804565b005b6102f060048036038101906102eb9190611f73565b6108b6565b6040516102fd91906124be565b60405180910390f35b610320600480360381019061031b9190611faf565b610969565b005b61033c60048036038101906103379190611e83565b610976565b60405161034991906124be565b60405180910390f35b61036c60048036038101906103679190611e83565b610996565b604051610379919061267b565b60405180910390f35b61038a6109df565b005b6103a660048036038101906103a19190611f37565b610b32565b005b6103b0610c83565b6040516103bd91906124a3565b60405180910390f35b6103ce610cac565b6040516103db91906124d9565b60405180910390f35b6103fe60048036038101906103f99190611f37565b610d3e565b005b61041a60048036038101906104159190611f73565b610e8f565b60405161042791906124be565b60405180910390f35b61044a60048036038101906104459190611f73565b610f5c565b60405161045791906124be565b60405180910390f35b610468610f7a565b005b610484600480360381019061047f9190611e83565b611111565b005b61048e6111ea565b60405161049b91906126bf565b60405180910390f35b6104be60048036038101906104b99190611eac565b6111ef565b6040516104cb919061267b565b60405180910390f35b6104dc611276565b6040516104e991906124be565b60405180910390f35b61050c60048036038101906105079190611e83565b611289565b005b60606005805461051d90612893565b80601f016020809104026020016040519081016040528092919081815260200182805461054990612893565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105b46105ad611430565b8484611438565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600454905090565b60096020528060005260406000206000915054906101000a900460ff1681565b600061061b848484611603565b6106dc84610627611430565b6106d7856040518060600160405280602881526020016129f160289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061068d611430565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab99092919063ffffffff16565b611438565b600190509392505050565b600080600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061078b5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561079c57826000915091506107e5565b60006107c96103e86107bb603260ff1687611b1d90919063ffffffff16565b611b9890919063ffffffff16565b90506107de8185611be290919063ffffffff16565b8192509250505b935093915050565b6000600760009054906101000a900460ff16905090565b61080c611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610890906125db565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b600061095f6108c3611430565b8461095a85600360006108d4611430565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d290919063ffffffff16565b611438565b6001905092915050565b6109733382611c2c565b50565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e7611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b906125db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610b3a611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe906125db565b60405180910390fd5b801580610be95750808015610be85750600a60009054906101000a900460ff165b5b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f906125fb565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610cbb90612893565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce790612893565b8015610d345780601f10610d0957610100808354040283529160200191610d34565b820191906000526020600020905b815481529060010190602001808311610d1757829003601f168201915b5050505050905090565b610d46611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca906125db565b60405180910390fd5b801580610df55750808015610df45750600a60009054906101000a900460ff165b5b610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b906125fb565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000610f52610e9c611430565b84610f4d85604051806060016040528060258152602001612a196025913960036000610ec6611430565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab99092919063ffffffff16565b611438565b6001905092915050565b6000610f70610f69611430565b8484611603565b6001905092915050565b610f82611430565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110089061259b565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611119611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d906125db565b60405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b603281565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a60009054906101000a900460ff1681565b611291611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611315906125db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561138e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113859061251b565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008082846113e191906126f6565b905083811015611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d9061257b565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f9061265b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061253b565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115f6919061267b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a9061263b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da906124fb565b60405180910390fd5b6103e88111611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e9061255b565b60405180910390fd5b611732838383611ddc565b61179e816040518060600160405280602681526020016129cb60269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab99092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000806117ef8585856106e7565b9150915061184582600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d290919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118e5919061267b565b60405180910390a360008111801561194c5750600073ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611ab2576119c58160026000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d290919063ffffffff16565b60026000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611aa9919061267b565b60405180910390a35b5050505050565b6000838311158290611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af891906124d9565b60405180910390fd5b5060008385611b1091906127d7565b9050809150509392505050565b600080831415611b305760009050611b92565b60008284611b3e919061277d565b9050828482611b4d919061274c565b14611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b84906125bb565b60405180910390fd5b809150505b92915050565b6000611bda83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611de1565b905092915050565b6000611c2483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ab9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c939061261b565b60405180910390fd5b611ca882600083611ddc565b611d14816040518060600160405280602281526020016129a960229139600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab99092919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d6c81600454611be290919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611dd0919061267b565b60405180910390a35050565b505050565b60008083118290611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f91906124d9565b60405180910390fd5b5060008385611e37919061274c565b9050809150509392505050565b600081359050611e5381612963565b92915050565b600081359050611e688161297a565b92915050565b600081359050611e7d81612991565b92915050565b600060208284031215611e9557600080fd5b6000611ea384828501611e44565b91505092915050565b60008060408385031215611ebf57600080fd5b6000611ecd85828601611e44565b9250506020611ede85828601611e44565b9150509250929050565b600080600060608486031215611efd57600080fd5b6000611f0b86828701611e44565b9350506020611f1c86828701611e44565b9250506040611f2d86828701611e6e565b9150509250925092565b60008060408385031215611f4a57600080fd5b6000611f5885828601611e44565b9250506020611f6985828601611e59565b9150509250929050565b60008060408385031215611f8657600080fd5b6000611f9485828601611e44565b9250506020611fa585828601611e6e565b9150509250929050565b600060208284031215611fc157600080fd5b6000611fcf84828501611e6e565b91505092915050565b611fe18161280b565b82525050565b611ff08161281d565b82525050565b6000612001826126da565b61200b81856126e5565b935061201b818560208601612860565b61202481612952565b840191505092915050565b600061203c6023836126e5565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120a26026836126e5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121086022836126e5565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061216e6021836126e5565b91507f616d6f756e7420746f20736d616c6c2c206d617468732077696c6c206272656160008301527f6b000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121d4601b836126e5565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006122146028836126e5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865204d6964205760008301527f6179204f776e65720000000000000000000000000000000000000000000000006020830152604082019050919050565b600061227a6021836126e5565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122e06020836126e5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006123206017836126e5565b91507f63616e6e6f742061646420746f2077686974656c6973740000000000000000006000830152602082019050919050565b60006123606021836126e5565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123c66025836126e5565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061242c6024836126e5565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61248e81612849565b82525050565b61249d81612853565b82525050565b60006020820190506124b86000830184611fd8565b92915050565b60006020820190506124d36000830184611fe7565b92915050565b600060208201905081810360008301526124f38184611ff6565b905092915050565b600060208201905081810360008301526125148161202f565b9050919050565b6000602082019050818103600083015261253481612095565b9050919050565b60006020820190508181036000830152612554816120fb565b9050919050565b6000602082019050818103600083015261257481612161565b9050919050565b60006020820190508181036000830152612594816121c7565b9050919050565b600060208201905081810360008301526125b481612207565b9050919050565b600060208201905081810360008301526125d48161226d565b9050919050565b600060208201905081810360008301526125f4816122d3565b9050919050565b6000602082019050818103600083015261261481612313565b9050919050565b6000602082019050818103600083015261263481612353565b9050919050565b60006020820190508181036000830152612654816123b9565b9050919050565b600060208201905081810360008301526126748161241f565b9050919050565b60006020820190506126906000830184612485565b92915050565b60006040820190506126ab6000830185612485565b6126b86020830184612485565b9392505050565b60006020820190506126d46000830184612494565b92915050565b600081519050919050565b600082825260208201905092915050565b600061270182612849565b915061270c83612849565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612741576127406128c5565b5b828201905092915050565b600061275782612849565b915061276283612849565b925082612772576127716128f4565b5b828204905092915050565b600061278882612849565b915061279383612849565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127cc576127cb6128c5565b5b828202905092915050565b60006127e282612849565b91506127ed83612849565b925082821015612800576127ff6128c5565b5b828203905092915050565b600061281682612829565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561287e578082015181840152602081019050612863565b8381111561288d576000848401525b50505050565b600060028204905060018216806128ab57607f821691505b602082108114156128bf576128be612923565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61296c8161280b565b811461297757600080fd5b50565b6129838161281d565b811461298e57600080fd5b50565b61299a81612849565b81146129a557600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206a925cfea0b29f275579bb9ef096cba3e17b253e441775cbf477333d57c9204b64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063cf82046111610071578063cf82046114610486578063dd62ed3e146104a4578063e75d7b04146104d4578063f2fde38b146104f25761018e565b8063a9059cbb14610430578063ac81008414610460578063ccfc2e8d1461046a5761018e565b8063715018a61461038257806383fbca341461038c5780638da5cb5b146103a857806395d89b41146103c6578063a056735d146103e4578063a457c2d7146104005761018e565b8063301a58011161014b578063395093511161012557806339509351146102d657806342966c68146103065780634a6f01b11461032257806370a08231146103525761018e565b8063301a58011461027d578063313ce567146102ae57806339137f8b146102cc5761018e565b806306fdde0314610193578063095ea7b3146101b15780630d43e8ad146101e157806318160ddd146101ff5780631dd17c321461021d57806323b872dd1461024d575b600080fd5b61019b61050e565b6040516101a891906124d9565b60405180910390f35b6101cb60048036038101906101c69190611f73565b6105a0565b6040516101d891906124be565b60405180910390f35b6101e96105be565b6040516101f691906124a3565b60405180910390f35b6102076105e4565b604051610214919061267b565b60405180910390f35b61023760048036038101906102329190611e83565b6105ee565b60405161024491906124be565b60405180910390f35b61026760048036038101906102629190611ee8565b61060e565b60405161027491906124be565b60405180910390f35b61029760048036038101906102929190611ee8565b6106e7565b6040516102a5929190612696565b60405180910390f35b6102b66107ed565b6040516102c391906126bf565b60405180910390f35b6102d4610804565b005b6102f060048036038101906102eb9190611f73565b6108b6565b6040516102fd91906124be565b60405180910390f35b610320600480360381019061031b9190611faf565b610969565b005b61033c60048036038101906103379190611e83565b610976565b60405161034991906124be565b60405180910390f35b61036c60048036038101906103679190611e83565b610996565b604051610379919061267b565b60405180910390f35b61038a6109df565b005b6103a660048036038101906103a19190611f37565b610b32565b005b6103b0610c83565b6040516103bd91906124a3565b60405180910390f35b6103ce610cac565b6040516103db91906124d9565b60405180910390f35b6103fe60048036038101906103f99190611f37565b610d3e565b005b61041a60048036038101906104159190611f73565b610e8f565b60405161042791906124be565b60405180910390f35b61044a60048036038101906104459190611f73565b610f5c565b60405161045791906124be565b60405180910390f35b610468610f7a565b005b610484600480360381019061047f9190611e83565b611111565b005b61048e6111ea565b60405161049b91906126bf565b60405180910390f35b6104be60048036038101906104b99190611eac565b6111ef565b6040516104cb919061267b565b60405180910390f35b6104dc611276565b6040516104e991906124be565b60405180910390f35b61050c60048036038101906105079190611e83565b611289565b005b60606005805461051d90612893565b80601f016020809104026020016040519081016040528092919081815260200182805461054990612893565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105b46105ad611430565b8484611438565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600454905090565b60096020528060005260406000206000915054906101000a900460ff1681565b600061061b848484611603565b6106dc84610627611430565b6106d7856040518060600160405280602881526020016129f160289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061068d611430565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab99092919063ffffffff16565b611438565b600190509392505050565b600080600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061078b5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561079c57826000915091506107e5565b60006107c96103e86107bb603260ff1687611b1d90919063ffffffff16565b611b9890919063ffffffff16565b90506107de8185611be290919063ffffffff16565b8192509250505b935093915050565b6000600760009054906101000a900460ff16905090565b61080c611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610890906125db565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b600061095f6108c3611430565b8461095a85600360006108d4611430565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d290919063ffffffff16565b611438565b6001905092915050565b6109733382611c2c565b50565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e7611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b906125db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610b3a611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe906125db565b60405180910390fd5b801580610be95750808015610be85750600a60009054906101000a900460ff165b5b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f906125fb565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610cbb90612893565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce790612893565b8015610d345780601f10610d0957610100808354040283529160200191610d34565b820191906000526020600020905b815481529060010190602001808311610d1757829003601f168201915b5050505050905090565b610d46611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca906125db565b60405180910390fd5b801580610df55750808015610df45750600a60009054906101000a900460ff165b5b610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b906125fb565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000610f52610e9c611430565b84610f4d85604051806060016040528060258152602001612a196025913960036000610ec6611430565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab99092919063ffffffff16565b611438565b6001905092915050565b6000610f70610f69611430565b8484611603565b6001905092915050565b610f82611430565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110089061259b565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611119611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d906125db565b60405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b603281565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a60009054906101000a900460ff1681565b611291611430565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611315906125db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561138e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113859061251b565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008082846113e191906126f6565b905083811015611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d9061257b565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f9061265b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061253b565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115f6919061267b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a9061263b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da906124fb565b60405180910390fd5b6103e88111611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e9061255b565b60405180910390fd5b611732838383611ddc565b61179e816040518060600160405280602681526020016129cb60269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab99092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000806117ef8585856106e7565b9150915061184582600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d290919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118e5919061267b565b60405180910390a360008111801561194c5750600073ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611ab2576119c58160026000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d290919063ffffffff16565b60026000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611aa9919061267b565b60405180910390a35b5050505050565b6000838311158290611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af891906124d9565b60405180910390fd5b5060008385611b1091906127d7565b9050809150509392505050565b600080831415611b305760009050611b92565b60008284611b3e919061277d565b9050828482611b4d919061274c565b14611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b84906125bb565b60405180910390fd5b809150505b92915050565b6000611bda83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611de1565b905092915050565b6000611c2483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ab9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c939061261b565b60405180910390fd5b611ca882600083611ddc565b611d14816040518060600160405280602281526020016129a960229139600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab99092919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d6c81600454611be290919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611dd0919061267b565b60405180910390a35050565b505050565b60008083118290611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f91906124d9565b60405180910390fd5b5060008385611e37919061274c565b9050809150509392505050565b600081359050611e5381612963565b92915050565b600081359050611e688161297a565b92915050565b600081359050611e7d81612991565b92915050565b600060208284031215611e9557600080fd5b6000611ea384828501611e44565b91505092915050565b60008060408385031215611ebf57600080fd5b6000611ecd85828601611e44565b9250506020611ede85828601611e44565b9150509250929050565b600080600060608486031215611efd57600080fd5b6000611f0b86828701611e44565b9350506020611f1c86828701611e44565b9250506040611f2d86828701611e6e565b9150509250925092565b60008060408385031215611f4a57600080fd5b6000611f5885828601611e44565b9250506020611f6985828601611e59565b9150509250929050565b60008060408385031215611f8657600080fd5b6000611f9485828601611e44565b9250506020611fa585828601611e6e565b9150509250929050565b600060208284031215611fc157600080fd5b6000611fcf84828501611e6e565b91505092915050565b611fe18161280b565b82525050565b611ff08161281d565b82525050565b6000612001826126da565b61200b81856126e5565b935061201b818560208601612860565b61202481612952565b840191505092915050565b600061203c6023836126e5565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120a26026836126e5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121086022836126e5565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061216e6021836126e5565b91507f616d6f756e7420746f20736d616c6c2c206d617468732077696c6c206272656160008301527f6b000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121d4601b836126e5565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006122146028836126e5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865204d6964205760008301527f6179204f776e65720000000000000000000000000000000000000000000000006020830152604082019050919050565b600061227a6021836126e5565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122e06020836126e5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006123206017836126e5565b91507f63616e6e6f742061646420746f2077686974656c6973740000000000000000006000830152602082019050919050565b60006123606021836126e5565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123c66025836126e5565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061242c6024836126e5565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61248e81612849565b82525050565b61249d81612853565b82525050565b60006020820190506124b86000830184611fd8565b92915050565b60006020820190506124d36000830184611fe7565b92915050565b600060208201905081810360008301526124f38184611ff6565b905092915050565b600060208201905081810360008301526125148161202f565b9050919050565b6000602082019050818103600083015261253481612095565b9050919050565b60006020820190508181036000830152612554816120fb565b9050919050565b6000602082019050818103600083015261257481612161565b9050919050565b60006020820190508181036000830152612594816121c7565b9050919050565b600060208201905081810360008301526125b481612207565b9050919050565b600060208201905081810360008301526125d48161226d565b9050919050565b600060208201905081810360008301526125f4816122d3565b9050919050565b6000602082019050818103600083015261261481612313565b9050919050565b6000602082019050818103600083015261263481612353565b9050919050565b60006020820190508181036000830152612654816123b9565b9050919050565b600060208201905081810360008301526126748161241f565b9050919050565b60006020820190506126906000830184612485565b92915050565b60006040820190506126ab6000830185612485565b6126b86020830184612485565b9392505050565b60006020820190506126d46000830184612494565b92915050565b600081519050919050565b600082825260208201905092915050565b600061270182612849565b915061270c83612849565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612741576127406128c5565b5b828201905092915050565b600061275782612849565b915061276283612849565b925082612772576127716128f4565b5b828204905092915050565b600061278882612849565b915061279383612849565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127cc576127cb6128c5565b5b828202905092915050565b60006127e282612849565b91506127ed83612849565b925082821015612800576127ff6128c5565b5b828203905092915050565b600061281682612829565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561287e578082015181840152602081019050612863565b8381111561288d576000848401525b50505050565b600060028204905060018216806128ab57607f821691505b602082108114156128bf576128be612923565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61296c8161280b565b811461297757600080fd5b50565b6129838161281d565b811461298e57600080fd5b50565b61299a81612849565b81146129a557600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206a925cfea0b29f275579bb9ef096cba3e17b253e441775cbf477333d57c9204b64736f6c63430008000033

Deployed Bytecode Sourcemap

29634:282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19089:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21199:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18247:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20164:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18393:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21842:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24625:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;20016:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24381:144;;;:::i;:::-;;22572:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29832:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18341:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20327:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15632:148;;;:::i;:::-;;24108:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14742:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19291:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23818:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23293:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20659:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16290:157;;;:::i;:::-;;23621:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18197:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20897:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18512:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15935:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19089:83;19126:13;19159:5;19152:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19089:83;:::o;21199:169::-;21282:4;21299:39;21308:12;:10;:12::i;:::-;21322:7;21331:6;21299:8;:39::i;:::-;21356:4;21349:11;;21199:169;;;;:::o;18247:29::-;;;;;;;;;;;;;:::o;20164:100::-;20217:7;20244:12;;20237:19;;20164:100;:::o;18393:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;21842:321::-;21948:4;21965:36;21975:6;21983:9;21994:6;21965:9;:36::i;:::-;22012:121;22021:6;22029:12;:10;:12::i;:::-;22043:89;22081:6;22043:89;;;;;;;;;;;;;;;;;:11;:19;22055:6;22043:19;;;;;;;;;;;;;;;:33;22063:12;:10;:12::i;:::-;22043:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;22012:8;:121::i;:::-;22151:4;22144:11;;21842:321;;;;;:::o;24625:413::-;24765:7;24774;24800:13;:21;24814:6;24800:21;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;24825:15;:26;24841:9;24825:26;;;;;;;;;;;;;;;;;;;;;;;;;24800:51;24796:102;;;24876:6;24884:1;24868:18;;;;;;24796:102;24949:11;24963:27;24985:4;24963:17;18227:2;24963:17;;:6;:10;;:17;;;;:::i;:::-;:21;;:27;;;;:::i;:::-;24949:41;;25009:15;25020:3;25009:6;:10;;:15;;;;:::i;:::-;25026:3;25001:29;;;;;24625:413;;;;;;;:::o;20016:83::-;20057:5;20082:9;;;;;;;;;;;20075:16;;20016:83;:::o;24381:144::-;14964:12;:10;:12::i;:::-;14954:22;;:6;;;;;;;;;;:22;;;14946:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24512:5:::1;24497:12;;:20;;;;;;;;;;;;;;;;;;24381:144::o:0;22572:218::-;22660:4;22677:83;22686:12;:10;:12::i;:::-;22700:7;22709:50;22748:10;22709:11;:25;22721:12;:10;:12::i;:::-;22709:25;;;;;;;;;;;;;;;:34;22735:7;22709:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;22677:8;:83::i;:::-;22778:4;22771:11;;22572:218;;;;:::o;29832:81::-;29880:25;29886:10;29898:6;29880:5;:25::i;:::-;29832:81;:::o;18341:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;20327:119::-;20393:7;20420:9;:18;20430:7;20420:18;;;;;;;;;;;;;;;;20413:25;;20327:119;;;:::o;15632:148::-;14964:12;:10;:12::i;:::-;14954:22;;:6;;;;;;;;;;:22;;;14946:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15739:1:::1;15702:40;;15723:6;::::0;::::1;;;;;;;;15702:40;;;;;;;;;;;;15770:1;15753:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;15632:148::o:0;24108:221::-;14964:12;:10;:12::i;:::-;14954:22;;:6;;;;;;;;;;:22;;;14946:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24208:8:::1;24207:9;:37;;;;24220:8;:24;;;;;24232:12;;;;;;;;;;;24220:24;24207:37;24199:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24313:8;24283:15;:27;24299:10;24283:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;24108:221:::0;;:::o;14742:79::-;14780:7;14807:6;;;;;;;;;;;14800:13;;14742:79;:::o;19291:87::-;19330:13;19363:7;19356:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19291:87;:::o;23818:211::-;14964:12;:10;:12::i;:::-;14954:22;;:6;;;;;;;;;;:22;;;14946:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23913:8:::1;23912:9;:37;;;;23925:8;:24;;;;;23937:12;;;;;;;;;;;23925:24;23912:37;23904:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24013:8;23988:13;:22;24002:7;23988:22;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;23818:211:::0;;:::o;23293:269::-;23386:4;23403:129;23412:12;:10;:12::i;:::-;23426:7;23435:96;23474:15;23435:96;;;;;;;;;;;;;;;;;:11;:25;23447:12;:10;:12::i;:::-;23435:25;;;;;;;;;;;;;;;:34;23461:7;23435:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;23403:8;:129::i;:::-;23550:4;23543:11;;23293:269;;;;:::o;20659:175::-;20745:4;20762:42;20772:12;:10;:12::i;:::-;20786:9;20797:6;20762:9;:42::i;:::-;20822:4;20815:11;;20659:175;;;;:::o;16290:157::-;15204:12;:10;:12::i;:::-;15188:28;;:12;;;;;;;;;;;:28;;;15180:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;16394:12:::1;;;;;;;;;;;16365:42;;16386:6;::::0;::::1;;;;;;;;16365:42;;;;;;;;;;;;16427:12;;;;;;;;;;;16418:6;::::0;:21:::1;;;;;;;;;;;;;;;;;;16290:157::o:0;23621:114::-;14964:12;:10;:12::i;:::-;14954:22;;:6;;;;;;;;;;:22;;;14946:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23715:12:::1;23698:14;;:29;;;;;;;;;;;;;;;;;;23621:114:::0;:::o;18197:32::-;18227:2;18197:32;:::o;20897:155::-;20988:7;21015:11;:19;21027:6;21015:19;;;;;;;;;;;;;;;:29;21035:8;21015:29;;;;;;;;;;;;;;;;21008:36;;20897:155;;;;:::o;18512:31::-;;;;;;;;;;;;;:::o;15935:196::-;14964:12;:10;:12::i;:::-;14954:22;;:6;;;;;;;;;;:22;;;14946:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16044:1:::1;16024:22;;:8;:22;;;;16016:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16115:8;16100:12;;:23;;;;;;;;;;;;;;;;;;15935:196:::0;:::o;3910:181::-;3968:7;3988:9;4004:1;4000;:5;;;;:::i;:::-;3988:17;;4029:1;4024;:6;;4016:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4082:1;4075:8;;;3910:181;;;;:::o;125:98::-;178:7;205:10;198:17;;125:98;:::o;28571:357::-;28694:1;28676:20;;:6;:20;;;;28668:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28776:1;28756:22;;:8;:22;;;;28748:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28862:7;28830:11;:19;28842:6;28830:19;;;;;;;;;;;;;;;:29;28850:8;28830:29;;;;;;;;;;;;;;;:39;;;;28902:8;28885:35;;28894:6;28885:35;;;28912:7;28885:35;;;;;;:::i;:::-;;;;;;;;28571:357;;;:::o;25528:1185::-;25652:1;25634:20;;:6;:20;;;;25626:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;25736:1;25715:23;;:9;:23;;;;25707:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25806:4;25797:6;:13;25789:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;25859:47;25880:6;25888:9;25899:6;25859:20;:47::i;:::-;25974:71;25996:6;25974:71;;;;;;;;;;;;;;;;;:9;:17;25984:6;25974:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;25954:9;:17;25964:6;25954:17;;;;;;;;;;;;;;;:91;;;;26086:24;26112:38;26154:51;26179:6;26187:9;26198:6;26154:24;:51::i;:::-;26085:120;;;;26280:42;26305:16;26280:9;:20;26290:9;26280:20;;;;;;;;;;;;;;;;:24;;:42;;;;:::i;:::-;26257:9;:20;26267:9;26257:20;;;;;;;;;;;;;;;:65;;;;26355:9;26338:45;;26347:6;26338:45;;;26366:16;26338:45;;;;;;:::i;:::-;;;;;;;;26473:1;26440:30;:34;:66;;;;;26504:1;26478:28;;:14;;;;;;;;;;;:28;;;;26440:66;26437:269;;;26550:61;26580:30;26550:9;:25;26560:14;;;;;;;;;;;26550:25;;;;;;;;;;;;;;;;:29;;:61;;;;:::i;:::-;26522:9;:25;26532:14;;;;;;;;;;;26522:25;;;;;;;;;;;;;;;:89;;;;26648:14;;;;;;;;;;;26631:64;;26640:6;26631:64;;;26664:30;26631:64;;;;;;:::i;:::-;;;;;;;;26437:269;25528:1185;;;;;:::o;4813:192::-;4899:7;4932:1;4927;:6;;4935:12;4919:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4959:9;4975:1;4971;:5;;;;:::i;:::-;4959:17;;4996:1;4989:8;;;4813:192;;;;;:::o;5264:400::-;5322:7;5501:1;5496;:6;5492:47;;;5526:1;5519:8;;;;5492:47;5551:9;5567:1;5563;:5;;;;:::i;:::-;5551:17;;5596:1;5591;5587;:5;;;;:::i;:::-;:10;5579:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5655:1;5648:8;;;5264:400;;;;;:::o;6140:132::-;6198:7;6225:39;6229:1;6232;6225:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6218:46;;6140:132;;;;:::o;4374:136::-;4432:7;4459:43;4463:1;4466;4459:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4452:50;;4374:136;;;;:::o;27715:418::-;27818:1;27799:21;;:7;:21;;;;27791:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27871:49;27892:7;27909:1;27913:6;27871:20;:49::i;:::-;27954:68;27977:6;27954:68;;;;;;;;;;;;;;;;;:9;:18;27964:7;27954:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;27933:9;:18;27943:7;27933:18;;;;;;;;;;;;;;;:89;;;;28048:24;28065:6;28048:12;;:16;;:24;;;;:::i;:::-;28033:12;:39;;;;28114:1;28088:37;;28097:7;28088:37;;;28118:6;28088:37;;;;;;:::i;:::-;;;;;;;;27715:418;;:::o;29533:92::-;;;;:::o;6768:278::-;6854:7;6886:1;6882;:5;6889:12;6874:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6913:9;6929:1;6925;:5;;;;:::i;:::-;6913:17;;7037:1;7030:8;;;6768:278;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:401::-;;;1797:2;1785:9;1776:7;1772:23;1768:32;1765:2;;;1813:1;1810;1803:12;1765:2;1856:1;1881:53;1926:7;1917:6;1906:9;1902:22;1881:53;:::i;:::-;1871:63;;1827:117;1983:2;2009:50;2051:7;2042:6;2031:9;2027:22;2009:50;:::i;:::-;1999:60;;1954:115;1755:321;;;;;:::o;2082:407::-;;;2207:2;2195:9;2186:7;2182:23;2178:32;2175:2;;;2223:1;2220;2213:12;2175:2;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2393:2;2419:53;2464:7;2455:6;2444:9;2440:22;2419:53;:::i;:::-;2409:63;;2364:118;2165:324;;;;;:::o;2495:262::-;;2603:2;2591:9;2582:7;2578:23;2574:32;2571:2;;;2619:1;2616;2609:12;2571:2;2662:1;2687:53;2732:7;2723:6;2712:9;2708:22;2687:53;:::i;:::-;2677:63;;2633:117;2561:196;;;;:::o;2763:118::-;2850:24;2868:5;2850:24;:::i;:::-;2845:3;2838:37;2828:53;;:::o;2887:109::-;2968:21;2983:5;2968:21;:::i;:::-;2963:3;2956:34;2946:50;;:::o;3002:364::-;;3118:39;3151:5;3118:39;:::i;:::-;3173:71;3237:6;3232:3;3173:71;:::i;:::-;3166:78;;3253:52;3298:6;3293:3;3286:4;3279:5;3275:16;3253:52;:::i;:::-;3330:29;3352:6;3330:29;:::i;:::-;3325:3;3321:39;3314:46;;3094:272;;;;;:::o;3372:367::-;;3535:67;3599:2;3594:3;3535:67;:::i;:::-;3528:74;;3632:34;3628:1;3623:3;3619:11;3612:55;3698:5;3693:2;3688:3;3684:12;3677:27;3730:2;3725:3;3721:12;3714:19;;3518:221;;;:::o;3745:370::-;;3908:67;3972:2;3967:3;3908:67;:::i;:::-;3901:74;;4005:34;4001:1;3996:3;3992:11;3985:55;4071:8;4066:2;4061:3;4057:12;4050:30;4106:2;4101:3;4097:12;4090:19;;3891:224;;;:::o;4121:366::-;;4284:67;4348:2;4343:3;4284:67;:::i;:::-;4277:74;;4381:34;4377:1;4372:3;4368:11;4361:55;4447:4;4442:2;4437:3;4433:12;4426:26;4478:2;4473:3;4469:12;4462:19;;4267:220;;;:::o;4493:365::-;;4656:67;4720:2;4715:3;4656:67;:::i;:::-;4649:74;;4753:34;4749:1;4744:3;4740:11;4733:55;4819:3;4814:2;4809:3;4805:12;4798:25;4849:2;4844:3;4840:12;4833:19;;4639:219;;;:::o;4864:325::-;;5027:67;5091:2;5086:3;5027:67;:::i;:::-;5020:74;;5124:29;5120:1;5115:3;5111:11;5104:50;5180:2;5175:3;5171:12;5164:19;;5010:179;;;:::o;5195:372::-;;5358:67;5422:2;5417:3;5358:67;:::i;:::-;5351:74;;5455:34;5451:1;5446:3;5442:11;5435:55;5521:10;5516:2;5511:3;5507:12;5500:32;5558:2;5553:3;5549:12;5542:19;;5341:226;;;:::o;5573:365::-;;5736:67;5800:2;5795:3;5736:67;:::i;:::-;5729:74;;5833:34;5829:1;5824:3;5820:11;5813:55;5899:3;5894:2;5889:3;5885:12;5878:25;5929:2;5924:3;5920:12;5913:19;;5719:219;;;:::o;5944:330::-;;6107:67;6171:2;6166:3;6107:67;:::i;:::-;6100:74;;6204:34;6200:1;6195:3;6191:11;6184:55;6265:2;6260:3;6256:12;6249:19;;6090:184;;;:::o;6280:321::-;;6443:67;6507:2;6502:3;6443:67;:::i;:::-;6436:74;;6540:25;6536:1;6531:3;6527:11;6520:46;6592:2;6587:3;6583:12;6576:19;;6426:175;;;:::o;6607:365::-;;6770:67;6834:2;6829:3;6770:67;:::i;:::-;6763:74;;6867:34;6863:1;6858:3;6854:11;6847:55;6933:3;6928:2;6923:3;6919:12;6912:25;6963:2;6958:3;6954:12;6947:19;;6753:219;;;:::o;6978:369::-;;7141:67;7205:2;7200:3;7141:67;:::i;:::-;7134:74;;7238:34;7234:1;7229:3;7225:11;7218:55;7304:7;7299:2;7294:3;7290:12;7283:29;7338:2;7333:3;7329:12;7322:19;;7124:223;;;:::o;7353:368::-;;7516:67;7580:2;7575:3;7516:67;:::i;:::-;7509:74;;7613:34;7609:1;7604:3;7600:11;7593:55;7679:6;7674:2;7669:3;7665:12;7658:28;7712:2;7707:3;7703:12;7696:19;;7499:222;;;:::o;7727:118::-;7814:24;7832:5;7814:24;:::i;:::-;7809:3;7802:37;7792:53;;:::o;7851:112::-;7934:22;7950:5;7934:22;:::i;:::-;7929:3;7922:35;7912:51;;:::o;7969:222::-;;8100:2;8089:9;8085:18;8077:26;;8113:71;8181:1;8170:9;8166:17;8157:6;8113:71;:::i;:::-;8067:124;;;;:::o;8197:210::-;;8322:2;8311:9;8307:18;8299:26;;8335:65;8397:1;8386:9;8382:17;8373:6;8335:65;:::i;:::-;8289:118;;;;:::o;8413:313::-;;8564:2;8553:9;8549:18;8541:26;;8613:9;8607:4;8603:20;8599:1;8588:9;8584:17;8577:47;8641:78;8714:4;8705:6;8641:78;:::i;:::-;8633:86;;8531:195;;;;:::o;8732:419::-;;8936:2;8925:9;8921:18;8913:26;;8985:9;8979:4;8975:20;8971:1;8960:9;8956:17;8949:47;9013:131;9139:4;9013:131;:::i;:::-;9005:139;;8903:248;;;:::o;9157:419::-;;9361:2;9350:9;9346:18;9338:26;;9410:9;9404:4;9400:20;9396:1;9385:9;9381:17;9374:47;9438:131;9564:4;9438:131;:::i;:::-;9430:139;;9328:248;;;:::o;9582:419::-;;9786:2;9775:9;9771:18;9763:26;;9835:9;9829:4;9825:20;9821:1;9810:9;9806:17;9799:47;9863:131;9989:4;9863:131;:::i;:::-;9855:139;;9753:248;;;:::o;10007:419::-;;10211:2;10200:9;10196:18;10188:26;;10260:9;10254:4;10250:20;10246:1;10235:9;10231:17;10224:47;10288:131;10414:4;10288:131;:::i;:::-;10280:139;;10178:248;;;:::o;10432:419::-;;10636:2;10625:9;10621:18;10613:26;;10685:9;10679:4;10675:20;10671:1;10660:9;10656:17;10649:47;10713:131;10839:4;10713:131;:::i;:::-;10705:139;;10603:248;;;:::o;10857:419::-;;11061:2;11050:9;11046:18;11038:26;;11110:9;11104:4;11100:20;11096:1;11085:9;11081:17;11074:47;11138:131;11264:4;11138:131;:::i;:::-;11130:139;;11028:248;;;:::o;11282:419::-;;11486:2;11475:9;11471:18;11463:26;;11535:9;11529:4;11525:20;11521:1;11510:9;11506:17;11499:47;11563:131;11689:4;11563:131;:::i;:::-;11555:139;;11453:248;;;:::o;11707:419::-;;11911:2;11900:9;11896:18;11888:26;;11960:9;11954:4;11950:20;11946:1;11935:9;11931:17;11924:47;11988:131;12114:4;11988:131;:::i;:::-;11980:139;;11878:248;;;:::o;12132:419::-;;12336:2;12325:9;12321:18;12313:26;;12385:9;12379:4;12375:20;12371:1;12360:9;12356:17;12349:47;12413:131;12539:4;12413:131;:::i;:::-;12405:139;;12303:248;;;:::o;12557:419::-;;12761:2;12750:9;12746:18;12738:26;;12810:9;12804:4;12800:20;12796:1;12785:9;12781:17;12774:47;12838:131;12964:4;12838:131;:::i;:::-;12830:139;;12728:248;;;:::o;12982:419::-;;13186:2;13175:9;13171:18;13163:26;;13235:9;13229:4;13225:20;13221:1;13210:9;13206:17;13199:47;13263:131;13389:4;13263:131;:::i;:::-;13255:139;;13153:248;;;:::o;13407:419::-;;13611:2;13600:9;13596:18;13588:26;;13660:9;13654:4;13650:20;13646:1;13635:9;13631:17;13624:47;13688:131;13814:4;13688:131;:::i;:::-;13680:139;;13578:248;;;:::o;13832:222::-;;13963:2;13952:9;13948:18;13940:26;;13976:71;14044:1;14033:9;14029:17;14020:6;13976:71;:::i;:::-;13930:124;;;;:::o;14060:332::-;;14219:2;14208:9;14204:18;14196:26;;14232:71;14300:1;14289:9;14285:17;14276:6;14232:71;:::i;:::-;14313:72;14381:2;14370:9;14366:18;14357:6;14313:72;:::i;:::-;14186:206;;;;;:::o;14398:214::-;;14525:2;14514:9;14510:18;14502:26;;14538:67;14602:1;14591:9;14587:17;14578:6;14538:67;:::i;:::-;14492:120;;;;:::o;14618:99::-;;14704:5;14698:12;14688:22;;14677:40;;;:::o;14723:169::-;;14841:6;14836:3;14829:19;14881:4;14876:3;14872:14;14857:29;;14819:73;;;;:::o;14898:305::-;;14957:20;14975:1;14957:20;:::i;:::-;14952:25;;14991:20;15009:1;14991:20;:::i;:::-;14986:25;;15145:1;15077:66;15073:74;15070:1;15067:81;15064:2;;;15151:18;;:::i;:::-;15064:2;15195:1;15192;15188:9;15181:16;;14942:261;;;;:::o;15209:185::-;;15266:20;15284:1;15266:20;:::i;:::-;15261:25;;15300:20;15318:1;15300:20;:::i;:::-;15295:25;;15339:1;15329:2;;15344:18;;:::i;:::-;15329:2;15386:1;15383;15379:9;15374:14;;15251:143;;;;:::o;15400:348::-;;15463:20;15481:1;15463:20;:::i;:::-;15458:25;;15497:20;15515:1;15497:20;:::i;:::-;15492:25;;15685:1;15617:66;15613:74;15610:1;15607:81;15602:1;15595:9;15588:17;15584:105;15581:2;;;15692:18;;:::i;:::-;15581:2;15740:1;15737;15733:9;15722:20;;15448:300;;;;:::o;15754:191::-;;15814:20;15832:1;15814:20;:::i;:::-;15809:25;;15848:20;15866:1;15848:20;:::i;:::-;15843:25;;15887:1;15884;15881:8;15878:2;;;15892:18;;:::i;:::-;15878:2;15937:1;15934;15930:9;15922:17;;15799:146;;;;:::o;15951:96::-;;16017:24;16035:5;16017:24;:::i;:::-;16006:35;;15996:51;;;:::o;16053:90::-;;16130:5;16123:13;16116:21;16105:32;;16095:48;;;:::o;16149:126::-;;16226:42;16219:5;16215:54;16204:65;;16194:81;;;:::o;16281:77::-;;16347:5;16336:16;;16326:32;;;:::o;16364:86::-;;16439:4;16432:5;16428:16;16417:27;;16407:43;;;:::o;16456:307::-;16524:1;16534:113;16548:6;16545:1;16542:13;16534:113;;;16633:1;16628:3;16624:11;16618:18;16614:1;16609:3;16605:11;16598:39;16570:2;16567:1;16563:10;16558:15;;16534:113;;;16665:6;16662:1;16659:13;16656:2;;;16745:1;16736:6;16731:3;16727:16;16720:27;16656:2;16505:258;;;;:::o;16769:320::-;;16850:1;16844:4;16840:12;16830:22;;16897:1;16891:4;16887:12;16918:18;16908:2;;16974:4;16966:6;16962:17;16952:27;;16908:2;17036;17028:6;17025:14;17005:18;17002:38;16999:2;;;17055:18;;:::i;:::-;16999:2;16820:269;;;;:::o;17095:180::-;17143:77;17140:1;17133:88;17240:4;17237:1;17230:15;17264:4;17261:1;17254:15;17281:180;17329:77;17326:1;17319:88;17426:4;17423:1;17416:15;17450:4;17447:1;17440:15;17467:180;17515:77;17512:1;17505:88;17612:4;17609:1;17602:15;17636:4;17633:1;17626:15;17653:102;;17745:2;17741:7;17736:2;17729:5;17725:14;17721:28;17711:38;;17701:54;;;:::o;17761:122::-;17834:24;17852:5;17834:24;:::i;:::-;17827:5;17824:35;17814:2;;17873:1;17870;17863:12;17814:2;17804:79;:::o;17889:116::-;17959:21;17974:5;17959:21;:::i;:::-;17952:5;17949:32;17939:2;;17995:1;17992;17985:12;17939:2;17929:76;:::o;18011:122::-;18084:24;18102:5;18084:24;:::i;:::-;18077:5;18074:35;18064:2;;18123:1;18120;18113:12;18064:2;18054:79;:::o

Swarm Source

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