ETH Price: $3,085.99 (-1.56%)
Gas: 4 Gwei

Token

mxdao (mxdao)
 

Overview

Max Total Supply

100,000,000,000 mxdao

Holders

225

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,840,705,868.065089785839377527 mxdao

Value
$0.00
0xb7dd4d134b1794ee848e1af1a62b85d7b2ea9301
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:
Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: Token.sol
// SPDX-License-Identifier: test

pragma solidity ^0.8.0;


/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


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

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

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


    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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);
        
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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


contract Ownable is Context {
    address public _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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


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

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

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

abstract contract WhiteList is Ownable {
    mapping (address => bool) private _whiteList;
    event LogWhiteListChanged(address indexed _user, bool _status);
    modifier onlyWhiteList() {
        require(_whiteList[_msgSender()], "White list");_;
    }
    function isWhiteListed(address _maker) public view returns (bool) {
        return _whiteList[_maker];
    }
    function setWhiteList (address _evilUser, bool _status) public virtual onlyOwner returns (bool){
        _whiteList[_evilUser] = _status;
        emit LogWhiteListChanged(_evilUser, _status);
        return _whiteList[_evilUser];
    }
}
import "./strings.sol";

contract Token is ERC20,Ownable,WhiteList {
    using SafeMath for uint256;
    using strings  for *;


    receive () external payable {}

    uint256 public total = 100000000000 * 10 ** 18;

    uint256 public _releaseTime;
    uint256 public _feeRatio;
    bool public _isStartLock;
    bool public _isStartSwapTrade;
    address public _destinationAddress;
    address public _backCoinAddress;
    address public _backAccountAddress;

    mapping(address=>bool) public uniswapV2PairMapping;
    mapping(address=>LockInfo[]) public lockAmountMapping;
    address[] public addressArray;
    
    constructor(address addr,address destinationAddress_,address backCoinAddress_,address backAccountAddress_) ERC20("mxdao","mxdao"){
        super._mint(addr, total);
        _owner = addr;
        _releaseTime = 1656604800;
        _destinationAddress = destinationAddress_;
        _backCoinAddress = backCoinAddress_;
        _backAccountAddress = backAccountAddress_;
    }

    struct LockInfo{
        uint256 lockAmount;
        uint256 lockAmountFinal;
        uint256 releaseTime;
    }

    function setFeeRatio(uint256 ratio)public onlyOwner{
        _feeRatio = ratio;
    }

    function setBackCoinAddress(address addr)public onlyOwner{
        _backCoinAddress = addr;
    }
    function setBackAccountAddress(address addr)public onlyOwner{
        _backAccountAddress = addr;
    }

    function setStartLock(bool isStart)public onlyOwner{
        _isStartLock = isStart;
    }
    function setStartSwapTrade(bool isStart)public onlyOwner{
        _isStartSwapTrade = isStart;
    }

    function setReleaseTime(uint256 time)public onlyOwner{
        _releaseTime = time;
    }

    function setUniswapV2PairMapping(address addr,bool flag)public onlyOwner{
        uniswapV2PairMapping[addr] = flag;
    }

    function setDestinationAddress(address addr)public onlyOwner{
        _destinationAddress = addr;
    }

    function release(uint256 ratio)public onlyOwner{
        for(uint256 i = 0; i < addressArray.length; i++){
            LockInfo[] storage lockInfoList = lockAmountMapping[addressArray[i]];
            for(uint256 k = 0;k < lockInfoList.length; k++){  
                if(lockInfoList[k].lockAmount == 0 || block.timestamp < lockInfoList[k].releaseTime) continue;
                uint256 releaseAmount = calculateRatio(lockInfoList[k].lockAmountFinal,ratio);
                if(lockInfoList[k].lockAmount < releaseAmount){
                    lockInfoList[k].lockAmount = 0;
                }else{
                    lockInfoList[k].lockAmount -= releaseAmount;
                }
            }
        }
    }


    function _transfer(address sender,address recipient,uint256 amount) internal virtual override{
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        if((uniswapV2PairMapping[sender] || uniswapV2PairMapping[recipient]) && !_isStartSwapTrade){
            require(isWhiteListed(sender) || isWhiteListed(recipient) || sender == _owner || recipient == _owner,"Only white list users can trade");
        }

        _beforeTokenTransfer(sender, recipient, amount);
        

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        
        if(!isWhiteListed(sender) && !isWhiteListed(recipient) && _isStartLock){
            if(sender == _owner){
                lockTransfer(recipient,amount);
            }else{
                normalTransfer(sender,recipient,amount);
            }
        }

        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
         
        _afterTokenTransfer(sender, recipient, amount);
    }

    function lockTransfer(address recipient,uint256 amount) internal{
        LockInfo memory lockInfo = LockInfo(amount,amount,_releaseTime);
        lockAmountMapping[recipient].push(lockInfo);
        if(lockAmountMapping[recipient].length == 1){
            addressArray.push(recipient);
        }

    }

    function normalTransfer(address sender,address recipient,uint256 amount) internal{
        require(recipient == _destinationAddress ,"Destination address error");

        LockInfo[] storage lockInfoList = lockAmountMapping[sender];
        uint256 lockAmount = 0;
        for(uint256 i =0;i< lockInfoList.length;i++){
            lockAmount += lockInfoList[i].lockAmount;
        }

        uint256 availableBalnce = _balances[sender].sub(lockAmount);
        string memory text = "Available Credit:";
        string memory value = Strings.toString(availableBalnce);
        string memory message = text.toSlice().concat(value.toSlice());
        require(amount <= availableBalnce, message);

        uint256 backAmount = amount.sub(calculateThreeRatio(amount,_feeRatio));

        IERC20(_backCoinAddress).transferFrom(_backAccountAddress,sender,backAmount);
    }
   
    function calculateRatio(uint256 _amount,uint256 ratio) private pure returns (uint256) {
        return _amount.mul(ratio).div(
            10**5
        );
    }
    function calculateThreeRatio(uint256 _amount,uint256 ratio) private pure returns (uint256) {
        return _amount.mul(ratio).div(
            10**3
        );
    }


}

File 1 of 2: strings.sol
// SPDX-License-Identifier: MIT
/*
 * @title String & slice utility library for Solidity contracts.
 * @author Nick Johnson <[email protected]>
 *
 * @dev Functionality in this library is largely implemented using an
 *      abstraction called a 'slice'. A slice represents a part of a string -
 *      anything from the entire string to a single character, or even no
 *      characters at all (a 0-length slice). Since a slice only has to specify
 *      an offset and a length, copying and manipulating slices is a lot less
 *      expensive than copying and manipulating the strings they reference.
 *
 *      To further reduce gas costs, most functions on slice that need to return
 *      a slice modify the original one instead of allocating a new one; for
 *      instance, `s.split(".")` will return the text up to the first '.',
 *      modifying s to only contain the remainder of the string after the '.'.
 *      In situations where you do not want to modify the original slice, you
 *      can make a copy first with `.copy()`, for example:
 *      `s.copy().split(".")`. Try and avoid using this idiom in loops; since
 *      Solidity has no memory management, it will result in allocating many
 *      short-lived slices that are later discarded.
 *
 *      Functions that return two slices come in two versions: a non-allocating
 *      version that takes the second slice as an argument, modifying it in
 *      place, and an allocating version that allocates and returns the second
 *      slice; see `nextRune` for example.
 *
 *      Functions that have to copy string data will return strings rather than
 *      slices; these can be cast back to slices for further processing if
 *      required.
 *
 *      For convenience, some functions are provided with non-modifying
 *      variants that create a new slice and return both; for instance,
 *      `s.splitNew('.')` leaves s unmodified, and returns two values
 *      corresponding to the left and right parts of the string.
 */

pragma solidity ^0.8.0;

library strings {
    struct slice {
        uint _len;
        uint _ptr;
    }

    function memcpy(uint dest, uint src, uint len1) private pure {
        // Copy word-length chunks while possible
        for(; len1 >= 32; len1 -= 32) {
            assembly {
                mstore(dest, mload(src))
            }
            dest += 32;
            src += 32;
        }

        // Copy remaining bytes
        uint mask = type(uint).max;
        if (len1 > 0) {
            mask = 256 ** (32 - len1) - 1;
        }
        assembly {
            let srcpart := and(mload(src), not(mask))
            let destpart := and(mload(dest), mask)
            mstore(dest, or(destpart, srcpart))
        }
    }

    /*
     * @dev Returns a slice containing the entire string.
     * @param self The string to make a slice from.
     * @return A newly allocated slice containing the entire string.
     */
    function toSlice(string memory self) internal pure returns (slice memory) {
        uint ptr;
        assembly {
            ptr := add(self, 0x20)
        }
        return slice(bytes(self).length, ptr);
    }

    /*
     * @dev Returns the length of a null-terminated bytes32 string.
     * @param self The value to find the length of.
     * @return The length of the string, from 0 to 32.
     */
    function len(bytes32 self) internal pure returns (uint) {
        uint ret;
        if (self == 0)
            return 0;
        if (uint(self) & type(uint128).max == 0) {
            ret += 16;
            self = bytes32(uint(self) / 0x100000000000000000000000000000000);
        }
        if (uint(self) & type(uint64).max == 0) {
            ret += 8;
            self = bytes32(uint(self) / 0x10000000000000000);
        }
        if (uint(self) & type(uint32).max == 0) {
            ret += 4;
            self = bytes32(uint(self) / 0x100000000);
        }
        if (uint(self) & type(uint16).max == 0) {
            ret += 2;
            self = bytes32(uint(self) / 0x10000);
        }
        if (uint(self) & type(uint8).max == 0) {
            ret += 1;
        }
        return 32 - ret;
    }

    /*
     * @dev Returns a slice containing the entire bytes32, interpreted as a
     *      null-terminated utf-8 string.
     * @param self The bytes32 value to convert to a slice.
     * @return A new slice containing the value of the input argument up to the
     *         first null.
     */
    function toSliceB32(bytes32 self) internal pure returns (slice memory ret) {
        // Allocate space for `self` in memory, copy it there, and point ret at it
        assembly {
            let ptr := mload(0x40)
            mstore(0x40, add(ptr, 0x20))
            mstore(ptr, self)
            mstore(add(ret, 0x20), ptr)
        }
        ret._len = len(self);
    }

    /*
     * @dev Returns a new slice containing the same data as the current slice.
     * @param self The slice to copy.
     * @return A new slice containing the same data as `self`.
     */
    function copy(slice memory self) internal pure returns (slice memory) {
        return slice(self._len, self._ptr);
    }

    /*
     * @dev Copies a slice to a new string.
     * @param self The slice to copy.
     * @return A newly allocated string containing the slice's text.
     */
    function toString(slice memory self) internal pure returns (string memory) {
        string memory ret = new string(self._len);
        uint retptr;
        assembly { retptr := add(ret, 32) }

        memcpy(retptr, self._ptr, self._len);
        return ret;
    }

    /*
     * @dev Returns the length in runes of the slice. Note that this operation
     *      takes time proportional to the length of the slice; avoid using it
     *      in loops, and call `slice.empty()` if you only need to know whether
     *      the slice is empty or not.
     * @param self The slice to operate on.
     * @return The length of the slice in runes.
     */
    function len(slice memory self) internal pure returns (uint l) {
        // Starting at ptr-31 means the LSB will be the byte we care about
        uint ptr = self._ptr - 31;
        uint end = ptr + self._len;
        for (l = 0; ptr < end; l++) {
            uint8 b;
            assembly { b := and(mload(ptr), 0xFF) }
            if (b < 0x80) {
                ptr += 1;
            } else if(b < 0xE0) {
                ptr += 2;
            } else if(b < 0xF0) {
                ptr += 3;
            } else if(b < 0xF8) {
                ptr += 4;
            } else if(b < 0xFC) {
                ptr += 5;
            } else {
                ptr += 6;
            }
        }
    }

    /*
     * @dev Returns true if the slice is empty (has a length of 0).
     * @param self The slice to operate on.
     * @return True if the slice is empty, False otherwise.
     */
    function empty(slice memory self) internal pure returns (bool) {
        return self._len == 0;
    }

    /*
     * @dev Returns a positive number if `other` comes lexicographically after
     *      `self`, a negative number if it comes before, or zero if the
     *      contents of the two slices are equal. Comparison is done per-rune,
     *      on unicode codepoints.
     * @param self The first slice to compare.
     * @param other The second slice to compare.
     * @return The result of the comparison.
     */
    function compare(slice memory self, slice memory other) internal pure returns (int) {
        uint shortest = self._len;
        if (other._len < self._len)
            shortest = other._len;

        uint selfptr = self._ptr;
        uint otherptr = other._ptr;
        for (uint idx = 0; idx < shortest; idx += 32) {
            uint a;
            uint b;
            assembly {
                a := mload(selfptr)
                b := mload(otherptr)
            }
            if (a != b) {
                // Mask out irrelevant bytes and check again
                uint mask = type(uint).max; // 0xffff...
                if(shortest < 32) {
                  mask = ~(2 ** (8 * (32 - shortest + idx)) - 1);
                }
                unchecked {
                    uint diff = (a & mask) - (b & mask);
                    if (diff != 0)
                        return int(diff);
                }
            }
            selfptr += 32;
            otherptr += 32;
        }
        return int(self._len) - int(other._len);
    }

    /*
     * @dev Returns true if the two slices contain the same text.
     * @param self The first slice to compare.
     * @param self The second slice to compare.
     * @return True if the slices are equal, false otherwise.
     */
    function equals(slice memory self, slice memory other) internal pure returns (bool) {
        return compare(self, other) == 0;
    }

    /*
     * @dev Extracts the first rune in the slice into `rune`, advancing the
     *      slice to point to the next rune and returning `self`.
     * @param self The slice to operate on.
     * @param rune The slice that will contain the first rune.
     * @return `rune`.
     */
    function nextRune(slice memory self, slice memory rune) internal pure returns (slice memory) {
        rune._ptr = self._ptr;

        if (self._len == 0) {
            rune._len = 0;
            return rune;
        }

        uint l;
        uint b;
        // Load the first byte of the rune into the LSBs of b
        assembly { b := and(mload(sub(mload(add(self, 32)), 31)), 0xFF) }
        if (b < 0x80) {
            l = 1;
        } else if(b < 0xE0) {
            l = 2;
        } else if(b < 0xF0) {
            l = 3;
        } else {
            l = 4;
        }

        // Check for truncated codepoints
        if (l > self._len) {
            rune._len = self._len;
            self._ptr += self._len;
            self._len = 0;
            return rune;
        }

        self._ptr += l;
        self._len -= l;
        rune._len = l;
        return rune;
    }

    /*
     * @dev Returns the first rune in the slice, advancing the slice to point
     *      to the next rune.
     * @param self The slice to operate on.
     * @return A slice containing only the first rune from `self`.
     */
    function nextRune(slice memory self) internal pure returns (slice memory ret) {
        nextRune(self, ret);
    }

    /*
     * @dev Returns the number of the first codepoint in the slice.
     * @param self The slice to operate on.
     * @return The number of the first codepoint in the slice.
     */
    function ord(slice memory self) internal pure returns (uint ret) {
        if (self._len == 0) {
            return 0;
        }

        uint word;
        uint length;
        uint divisor = 2 ** 248;

        // Load the rune into the MSBs of b
        assembly { word:= mload(mload(add(self, 32))) }
        uint b = word / divisor;
        if (b < 0x80) {
            ret = b;
            length = 1;
        } else if(b < 0xE0) {
            ret = b & 0x1F;
            length = 2;
        } else if(b < 0xF0) {
            ret = b & 0x0F;
            length = 3;
        } else {
            ret = b & 0x07;
            length = 4;
        }

        // Check for truncated codepoints
        if (length > self._len) {
            return 0;
        }

        for (uint i = 1; i < length; i++) {
            divisor = divisor / 256;
            b = (word / divisor) & 0xFF;
            if (b & 0xC0 != 0x80) {
                // Invalid UTF-8 sequence
                return 0;
            }
            ret = (ret * 64) | (b & 0x3F);
        }

        return ret;
    }

    /*
     * @dev Returns the keccak-256 hash of the slice.
     * @param self The slice to hash.
     * @return The hash of the slice.
     */
    function keccak(slice memory self) internal pure returns (bytes32 ret) {
        assembly {
            ret := keccak256(mload(add(self, 32)), mload(self))
        }
    }

    /*
     * @dev Returns true if `self` starts with `needle`.
     * @param self The slice to operate on.
     * @param needle The slice to search for.
     * @return True if the slice starts with the provided text, false otherwise.
     */
    function startsWith(slice memory self, slice memory needle) internal pure returns (bool) {
        if (self._len < needle._len) {
            return false;
        }

        if (self._ptr == needle._ptr) {
            return true;
        }

        bool equal;
        assembly {
            let length := mload(needle)
            let selfptr := mload(add(self, 0x20))
            let needleptr := mload(add(needle, 0x20))
            equal := eq(keccak256(selfptr, length), keccak256(needleptr, length))
        }
        return equal;
    }

    /*
     * @dev If `self` starts with `needle`, `needle` is removed from the
     *      beginning of `self`. Otherwise, `self` is unmodified.
     * @param self The slice to operate on.
     * @param needle The slice to search for.
     * @return `self`
     */
    function beyond(slice memory self, slice memory needle) internal pure returns (slice memory) {
        if (self._len < needle._len) {
            return self;
        }

        bool equal = true;
        if (self._ptr != needle._ptr) {
            assembly {
                let length := mload(needle)
                let selfptr := mload(add(self, 0x20))
                let needleptr := mload(add(needle, 0x20))
                equal := eq(keccak256(selfptr, length), keccak256(needleptr, length))
            }
        }

        if (equal) {
            self._len -= needle._len;
            self._ptr += needle._len;
        }

        return self;
    }

    /*
     * @dev Returns true if the slice ends with `needle`.
     * @param self The slice to operate on.
     * @param needle The slice to search for.
     * @return True if the slice starts with the provided text, false otherwise.
     */
    function endsWith(slice memory self, slice memory needle) internal pure returns (bool) {
        if (self._len < needle._len) {
            return false;
        }

        uint selfptr = self._ptr + self._len - needle._len;

        if (selfptr == needle._ptr) {
            return true;
        }

        bool equal;
        assembly {
            let length := mload(needle)
            let needleptr := mload(add(needle, 0x20))
            equal := eq(keccak256(selfptr, length), keccak256(needleptr, length))
        }

        return equal;
    }

    /*
     * @dev If `self` ends with `needle`, `needle` is removed from the
     *      end of `self`. Otherwise, `self` is unmodified.
     * @param self The slice to operate on.
     * @param needle The slice to search for.
     * @return `self`
     */
    function until(slice memory self, slice memory needle) internal pure returns (slice memory) {
        if (self._len < needle._len) {
            return self;
        }

        uint selfptr = self._ptr + self._len - needle._len;
        bool equal = true;
        if (selfptr != needle._ptr) {
            assembly {
                let length := mload(needle)
                let needleptr := mload(add(needle, 0x20))
                equal := eq(keccak256(selfptr, length), keccak256(needleptr, length))
            }
        }

        if (equal) {
            self._len -= needle._len;
        }

        return self;
    }

    // Returns the memory address of the first byte of the first occurrence of
    // `needle` in `self`, or the first byte after `self` if not found.
    function findPtr(uint selflen, uint selfptr, uint needlelen, uint needleptr) private pure returns (uint) {
        uint ptr = selfptr;
        uint idx;

        if (needlelen <= selflen) {
            if (needlelen <= 32) {
                bytes32 mask;
                if (needlelen > 0) {
                    mask = bytes32(~(2 ** (8 * (32 - needlelen)) - 1));
                }

                bytes32 needledata;
                assembly { needledata := and(mload(needleptr), mask) }

                uint end = selfptr + selflen - needlelen;
                bytes32 ptrdata;
                assembly { ptrdata := and(mload(ptr), mask) }

                while (ptrdata != needledata) {
                    if (ptr >= end)
                        return selfptr + selflen;
                    ptr++;
                    assembly { ptrdata := and(mload(ptr), mask) }
                }
                return ptr;
            } else {
                // For long needles, use hashing
                bytes32 hash;
                assembly { hash := keccak256(needleptr, needlelen) }

                for (idx = 0; idx <= selflen - needlelen; idx++) {
                    bytes32 testHash;
                    assembly { testHash := keccak256(ptr, needlelen) }
                    if (hash == testHash)
                        return ptr;
                    ptr += 1;
                }
            }
        }
        return selfptr + selflen;
    }

    // Returns the memory address of the first byte after the last occurrence of
    // `needle` in `self`, or the address of `self` if not found.
    function rfindPtr(uint selflen, uint selfptr, uint needlelen, uint needleptr) private pure returns (uint) {
        uint ptr;

        if (needlelen <= selflen) {
            if (needlelen <= 32) {
                bytes32 mask;
                if (needlelen > 0) {
                    mask = bytes32(~(2 ** (8 * (32 - needlelen)) - 1));
                }

                bytes32 needledata;
                assembly { needledata := and(mload(needleptr), mask) }

                ptr = selfptr + selflen - needlelen;
                bytes32 ptrdata;
                assembly { ptrdata := and(mload(ptr), mask) }

                while (ptrdata != needledata) {
                    if (ptr <= selfptr)
                        return selfptr;
                    ptr--;
                    assembly { ptrdata := and(mload(ptr), mask) }
                }
                return ptr + needlelen;
            } else {
                // For long needles, use hashing
                bytes32 hash;
                assembly { hash := keccak256(needleptr, needlelen) }
                ptr = selfptr + (selflen - needlelen);
                while (ptr >= selfptr) {
                    bytes32 testHash;
                    assembly { testHash := keccak256(ptr, needlelen) }
                    if (hash == testHash)
                        return ptr + needlelen;
                    ptr -= 1;
                }
            }
        }
        return selfptr;
    }

    /*
     * @dev Modifies `self` to contain everything from the first occurrence of
     *      `needle` to the end of the slice. `self` is set to the empty slice
     *      if `needle` is not found.
     * @param self The slice to search and modify.
     * @param needle The text to search for.
     * @return `self`.
     */
    function find(slice memory self, slice memory needle) internal pure returns (slice memory) {
        uint ptr = findPtr(self._len, self._ptr, needle._len, needle._ptr);
        self._len -= ptr - self._ptr;
        self._ptr = ptr;
        return self;
    }

    /*
     * @dev Modifies `self` to contain the part of the string from the start of
     *      `self` to the end of the first occurrence of `needle`. If `needle`
     *      is not found, `self` is set to the empty slice.
     * @param self The slice to search and modify.
     * @param needle The text to search for.
     * @return `self`.
     */
    function rfind(slice memory self, slice memory needle) internal pure returns (slice memory) {
        uint ptr = rfindPtr(self._len, self._ptr, needle._len, needle._ptr);
        self._len = ptr - self._ptr;
        return self;
    }

    /*
     * @dev Splits the slice, setting `self` to everything after the first
     *      occurrence of `needle`, and `token` to everything before it. If
     *      `needle` does not occur in `self`, `self` is set to the empty slice,
     *      and `token` is set to the entirety of `self`.
     * @param self The slice to split.
     * @param needle The text to search for in `self`.
     * @param token An output parameter to which the first token is written.
     * @return `token`.
     */
    function split(slice memory self, slice memory needle, slice memory token) internal pure returns (slice memory) {
        uint ptr = findPtr(self._len, self._ptr, needle._len, needle._ptr);
        token._ptr = self._ptr;
        token._len = ptr - self._ptr;
        if (ptr == self._ptr + self._len) {
            // Not found
            self._len = 0;
        } else {
            self._len -= token._len + needle._len;
            self._ptr = ptr + needle._len;
        }
        return token;
    }

    /*
     * @dev Splits the slice, setting `self` to everything after the first
     *      occurrence of `needle`, and returning everything before it. If
     *      `needle` does not occur in `self`, `self` is set to the empty slice,
     *      and the entirety of `self` is returned.
     * @param self The slice to split.
     * @param needle The text to search for in `self`.
     * @return The part of `self` up to the first occurrence of `delim`.
     */
    function split(slice memory self, slice memory needle) internal pure returns (slice memory token) {
        split(self, needle, token);
    }

    /*
     * @dev Splits the slice, setting `self` to everything before the last
     *      occurrence of `needle`, and `token` to everything after it. If
     *      `needle` does not occur in `self`, `self` is set to the empty slice,
     *      and `token` is set to the entirety of `self`.
     * @param self The slice to split.
     * @param needle The text to search for in `self`.
     * @param token An output parameter to which the first token is written.
     * @return `token`.
     */
    function rsplit(slice memory self, slice memory needle, slice memory token) internal pure returns (slice memory) {
        uint ptr = rfindPtr(self._len, self._ptr, needle._len, needle._ptr);
        token._ptr = ptr;
        token._len = self._len - (ptr - self._ptr);
        if (ptr == self._ptr) {
            // Not found
            self._len = 0;
        } else {
            self._len -= token._len + needle._len;
        }
        return token;
    }

    /*
     * @dev Splits the slice, setting `self` to everything before the last
     *      occurrence of `needle`, and returning everything after it. If
     *      `needle` does not occur in `self`, `self` is set to the empty slice,
     *      and the entirety of `self` is returned.
     * @param self The slice to split.
     * @param needle The text to search for in `self`.
     * @return The part of `self` after the last occurrence of `delim`.
     */
    function rsplit(slice memory self, slice memory needle) internal pure returns (slice memory token) {
        rsplit(self, needle, token);
    }

    /*
     * @dev Counts the number of nonoverlapping occurrences of `needle` in `self`.
     * @param self The slice to search.
     * @param needle The text to search for in `self`.
     * @return The number of occurrences of `needle` found in `self`.
     */
    function count(slice memory self, slice memory needle) internal pure returns (uint cnt) {
        uint ptr = findPtr(self._len, self._ptr, needle._len, needle._ptr) + needle._len;
        while (ptr <= self._ptr + self._len) {
            cnt++;
            ptr = findPtr(self._len - (ptr - self._ptr), ptr, needle._len, needle._ptr) + needle._len;
        }
    }

    /*
     * @dev Returns True if `self` contains `needle`.
     * @param self The slice to search.
     * @param needle The text to search for in `self`.
     * @return True if `needle` is found in `self`, false otherwise.
     */
    function contains(slice memory self, slice memory needle) internal pure returns (bool) {
        return rfindPtr(self._len, self._ptr, needle._len, needle._ptr) != self._ptr;
    }

    /*
     * @dev Returns a newly allocated string containing the concatenation of
     *      `self` and `other`.
     * @param self The first slice to concatenate.
     * @param other The second slice to concatenate.
     * @return The concatenation of the two strings.
     */
    function concat(slice memory self, slice memory other) internal pure returns (string memory) {
        string memory ret = new string(self._len + other._len);
        uint retptr;
        assembly { retptr := add(ret, 32) }
        memcpy(retptr, self._ptr, self._len);
        memcpy(retptr + self._len, other._ptr, other._len);
        return ret;
    }

    /*
     * @dev Joins an array of slices, using `self` as a delimiter, returning a
     *      newly allocated string.
     * @param self The delimiter to use.
     * @param parts A list of slices to join.
     * @return A newly allocated string containing all the slices in `parts`,
     *         joined with `self`.
     */
    function join(slice memory self, slice[] memory parts) internal pure returns (string memory) {
        if (parts.length == 0)
            return "";

        uint length = self._len * (parts.length - 1);
        for(uint i = 0; i < parts.length; i++)
            length += parts[i]._len;

        string memory ret = new string(length);
        uint retptr;
        assembly { retptr := add(ret, 32) }

        for(uint i = 0; i < parts.length; i++) {
            memcpy(retptr, parts[i]._ptr, parts[i]._len);
            retptr += parts[i]._len;
            if (i < parts.length - 1) {
                memcpy(retptr, self._ptr, self._len);
                retptr += self._len;
            }
        }

        return ret;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"address","name":"destinationAddress_","type":"address"},{"internalType":"address","name":"backCoinAddress_","type":"address"},{"internalType":"address","name":"backAccountAddress_","type":"address"}],"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":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"LogWhiteListChanged","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":[],"name":"_backAccountAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_backCoinAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_destinationAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isStartLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isStartSwapTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_releaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addressArray","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_maker","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockAmountMapping","outputs":[{"internalType":"uint256","name":"lockAmount","type":"uint256"},{"internalType":"uint256","name":"lockAmountFinal","type":"uint256"},{"internalType":"uint256","name":"releaseTime","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"ratio","type":"uint256"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setBackAccountAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setBackCoinAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setDestinationAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ratio","type":"uint256"}],"name":"setFeeRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setReleaseTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isStart","type":"bool"}],"name":"setStartLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isStart","type":"bool"}],"name":"setStartSwapTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setUniswapV2PairMapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_evilUser","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"uniswapV2PairMapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526c01431e0fae6d7217caa00000006009553480156200002257600080fd5b50604051620028b0380380620028b08339810160408190526200004591620002cd565b6040805180820182526005808252646d7864616f60d81b60208084018281528551808701909652928552840152815191929162000085916003916200020a565b5080516200009b9060049060208401906200020a565b505050620000b7846009546200012360201b6200123a1760201c565b600580546001600160a01b039586166001600160a01b0319918216179091556362bdc880600a55600c8054948616620100000262010000600160b01b031990951694909417909355600d805492851692841692909217909155600e8054919093169116179055620003cb565b6001600160a01b038216620001555760405162461bcd60e51b81526004016200014c9062000329565b60405180910390fd5b620001636000838362000205565b806002600082825462000177919062000369565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a690849062000369565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001eb90859062000360565b60405180910390a3620002016000838362000205565b5050565b505050565b82805462000218906200038e565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b80516001600160a01b0381168114620002c857600080fd5b919050565b60008060008060808587031215620002e3578384fd5b620002ee85620002b0565b9350620002fe60208601620002b0565b92506200030e60408601620002b0565b91506200031e60608601620002b0565b905092959194509250565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200038957634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620003a357607f821691505b60208210811415620003c557634e487b7160e01b600052602260045260246000fd5b50919050565b6124d580620003db6000396000f3fe60806040526004361061023f5760003560e01c80637fa4cacb1161012e578063a69df4b5116100ab578063dd4670641161006f578063dd46706414610656578063dd62ed3e14610676578063e0bcc6a614610696578063f2fde38b146106ab578063f4d8ee66146106cb57610246565b8063a69df4b5146105d7578063a9059cbb146105ec578063ab05bfff1461060c578063b2bdfa7b1461062c578063b6c523241461064157610246565b80638f27e046116100f25780638f27e04614610558578063915f8bae1461056d57806395d89b4114610582578063a457c2d714610597578063a534ffc8146105b757610246565b80637fa4cacb146104b45780637ffc19f1146104d457806384b108aa146105035780638d14e127146105235780638da5cb5b1461054357610246565b8063313ce567116101bc5780636f9170f6116101805780636f9170f61461041f57806370a082311461043f578063715018a61461045f57806379a400e9146104745780637bade3ce1461049457610246565b8063313ce5671461038857806337bdc99b146103aa57806339509351146103ca5780635284e125146103ea5780636db01e931461040a57610246565b80631c1252f5116102035780631c1252f5146103145780632208ee1d1461032957806323b872dd1461033e5780632ddbd13a1461035e5780632f4e557b1461037357610246565b806306fdde031461024b578063095ea7b3146102765780630f96cf34146102a357806318160ddd146102d057806319f4ff2f146102f257610246565b3661024657005b600080fd5b34801561025757600080fd5b506102606106eb565b60405161026d9190611e26565b60405180910390f35b34801561028257600080fd5b50610296610291366004611d6a565b61077d565b60405161026d9190611e1b565b3480156102af57600080fd5b506102c36102be366004611dcb565b61079b565b60405161026d9190611de3565b3480156102dc57600080fd5b506102e56107c5565b60405161026d9190612235565b3480156102fe57600080fd5b5061031261030d366004611dcb565b6107cb565b005b34801561032057600080fd5b506102e561080e565b34801561033557600080fd5b506102e5610814565b34801561034a57600080fd5b50610296610359366004611cf9565b61081a565b34801561036a57600080fd5b506102e56108ac565b34801561037f57600080fd5b506102966108b2565b34801561039457600080fd5b5061039d6108bb565b60405161026d9190612254565b3480156103b657600080fd5b506103126103c5366004611dcb565b6108c0565b3480156103d657600080fd5b506102966103e5366004611d6a565b610af7565b3480156103f657600080fd5b50610312610405366004611d93565b610b4b565b34801561041657600080fd5b50610296610b9a565b34801561042b57600080fd5b5061029661043a366004611cad565b610ba8565b34801561044b57600080fd5b506102e561045a366004611cad565b610bca565b34801561046b57600080fd5b50610312610be5565b34801561048057600080fd5b5061029661048f366004611cad565b610c52565b3480156104a057600080fd5b506103126104af366004611d93565b610c67565b3480156104c057600080fd5b506103126104cf366004611cad565b610caf565b3480156104e057600080fd5b506104f46104ef366004611d6a565b610d0e565b60405161026d9392919061223e565b34801561050f57600080fd5b5061031261051e366004611cad565b610d50565b34801561052f57600080fd5b5061029661053e366004611d34565b610da7565b34801561054f57600080fd5b506102c3610e5a565b34801561056457600080fd5b506102c3610e69565b34801561057957600080fd5b506102c3610e7e565b34801561058e57600080fd5b50610260610e8d565b3480156105a357600080fd5b506102966105b2366004611d6a565b610e9c565b3480156105c357600080fd5b506103126105d2366004611cad565b610f15565b3480156105e357600080fd5b50610312610f6c565b3480156105f857600080fd5b50610296610607366004611d6a565b611008565b34801561061857600080fd5b50610312610627366004611dcb565b61101c565b34801561063857600080fd5b506102c3611056565b34801561064d57600080fd5b506102e5611065565b34801561066257600080fd5b50610312610671366004611dcb565b61106b565b34801561068257600080fd5b506102e5610691366004611cc7565b6110fb565b3480156106a257600080fd5b506102c3611126565b3480156106b757600080fd5b506103126106c6366004611cad565b611135565b3480156106d757600080fd5b506103126106e6366004611d34565b6111da565b6060600380546106fa906123d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610726906123d8565b80156107735780601f1061074857610100808354040283529160200191610773565b820191906000526020600020905b81548152906001019060200180831161075657829003601f168201915b5050505050905090565b600061079161078a611302565b8484611306565b5060015b92915050565b601181815481106107ab57600080fd5b6000918252602090912001546001600160a01b0316905081565b60025490565b6107d3611302565b6005546001600160a01b039081169116146108095760405162461bcd60e51b815260040161080090612013565b60405180910390fd5b600b55565b600b5481565b600a5481565b60006108278484846113ba565b6001600160a01b038416600090815260016020526040812081610848611302565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561088b5760405162461bcd60e51b815260040161080090611fcb565b61089f85610897611302565b858403611306565b60019150505b9392505050565b60095481565b600c5460ff1681565b601290565b6108c8611302565b6005546001600160a01b039081169116146108f55760405162461bcd60e51b815260040161080090612013565b60005b601154811015610af3576000601060006011848154811061092957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001812091505b8154811015610ade5781818154811061097957634e487b7160e01b600052603260045260246000fd5b906000526020600020906003020160000154600014806109c957508181815481106109b457634e487b7160e01b600052603260045260246000fd5b90600052602060002090600302016002015442105b156109d357610acc565b6000610a108383815481106109f857634e487b7160e01b600052603260045260246000fd5b906000526020600020906003020160010154866115ff565b905080838381548110610a3357634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201600001541015610a83576000838381548110610a6d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912060039091020155610aca565b80838381548110610aa457634e487b7160e01b600052603260045260246000fd5b90600052602060002090600302016000016000828254610ac491906123c1565b90915550505b505b80610ad681612413565b915050610950565b50508080610aeb90612413565b9150506108f8565b5050565b6000610791610b04611302565b848460016000610b12611302565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610b469190612262565b611306565b610b53611302565b6005546001600160a01b03908116911614610b805760405162461bcd60e51b815260040161080090612013565b600c80549115156101000261ff0019909216919091179055565b600c54610100900460ff1681565b6001600160a01b03811660009081526008602052604090205460ff165b919050565b6001600160a01b031660009081526020819052604090205490565b610bed611302565b6005546001600160a01b03908116911614610c1a5760405162461bcd60e51b815260040161080090612013565b6005546040516000916001600160a01b031690600080516020612480833981519152908390a3600580546001600160a01b0319169055565b600f6020526000908152604090205460ff1681565b610c6f611302565b6005546001600160a01b03908116911614610c9c5760405162461bcd60e51b815260040161080090612013565b600c805460ff1916911515919091179055565b610cb7611302565b6005546001600160a01b03908116911614610ce45760405162461bcd60e51b815260040161080090612013565b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60106020528160005260406000208181548110610d2a57600080fd5b600091825260209091206003909102018054600182015460029092015490935090915083565b610d58611302565b6005546001600160a01b03908116911614610d855760405162461bcd60e51b815260040161080090612013565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610db1611302565b6005546001600160a01b03908116911614610dde5760405162461bcd60e51b815260040161080090612013565b6001600160a01b03831660008181526008602052604090819020805460ff1916851515179055517fc3f09c45f9f7bb10149cba84a0539e17a269b35e7d3cdbb25cce5aef82dda30690610e32908590611e1b565b60405180910390a250506001600160a01b031660009081526008602052604090205460ff1690565b6005546001600160a01b031690565b600c546201000090046001600160a01b031681565b600e546001600160a01b031681565b6060600480546106fa906123d8565b60008060016000610eab611302565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610ef75760405162461bcd60e51b8152600401610800906121b9565b610f0b610f02611302565b85858403611306565b5060019392505050565b610f1d611302565b6005546001600160a01b03908116911614610f4a5760405162461bcd60e51b815260040161080090612013565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610f965760405162461bcd60e51b815260040161080090612176565b6007544211610fb75760405162461bcd60e51b81526004016108009061213f565b6006546005546040516001600160a01b03928316929091169060008051602061248083398151915290600090a3600654600580546001600160a01b0319166001600160a01b03909216919091179055565b6000610791611015611302565b84846113ba565b611024611302565b6005546001600160a01b039081169116146110515760405162461bcd60e51b815260040161080090612013565b600a55565b6005546001600160a01b031681565b60075490565b611073611302565b6005546001600160a01b039081169116146110a05760405162461bcd60e51b815260040161080090612013565b60058054600680546001600160a01b03199081166001600160a01b038416179091551690556110cf8142612262565b6007556005546040516000916001600160a01b031690600080516020612480833981519152908390a350565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600d546001600160a01b031681565b61113d611302565b6005546001600160a01b0390811691161461116a5760405162461bcd60e51b815260040161080090612013565b6001600160a01b0381166111905760405162461bcd60e51b815260040161080090611ebc565b6005546040516001600160a01b0380841692169060008051602061248083398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6111e2611302565b6005546001600160a01b0390811691161461120f5760405162461bcd60e51b815260040161080090612013565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6001600160a01b0382166112605760405162461bcd60e51b8152600401610800906121fe565b61126c60008383611618565b806002600082825461127e9190612262565b90915550506001600160a01b038216600090815260208190526040812080548392906112ab908490612262565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112ee908590612235565b60405180910390a3610af360008383611618565b3390565b6001600160a01b03831661132c5760405162461bcd60e51b8152600401610800906120c4565b6001600160a01b0382166113525760405162461bcd60e51b815260040161080090611f02565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906113ad908590612235565b60405180910390a3505050565b6001600160a01b0383166113e05760405162461bcd60e51b815260040161080090612048565b6001600160a01b0382166114065760405162461bcd60e51b815260040161080090611e79565b6001600160a01b0383166000908152600f602052604090205460ff168061144557506001600160a01b0382166000908152600f602052604090205460ff165b80156114595750600c54610100900460ff16155b156114c25761146783610ba8565b80611476575061147682610ba8565b8061148e57506005546001600160a01b038481169116145b806114a657506005546001600160a01b038381169116145b6114c25760405162461bcd60e51b815260040161080090612108565b6114cd838383611618565b6001600160a01b038316600090815260208190526040902054818110156115065760405162461bcd60e51b815260040161080090611f44565b61150f84610ba8565b158015611522575061152083610ba8565b155b80156115305750600c5460ff165b15611565576005546001600160a01b038581169116141561155a57611555838361161d565b611565565b6115658484846116da565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061159c908490612262565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115e69190612235565b60405180910390a36115f9848484611618565b50505050565b60006108a5620186a061161285856118d1565b90611916565b505050565b604080516060810182528281526020808201848152600a548385019081526001600160a01b03871660008181526010855295862080546001818101835582895295882087516003909202019081559351848601559151600290930192909255935291549091141561161857601180546001810182556000919091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180546001600160a01b0385166001600160a01b0319909116179055505050565b600c546001600160a01b0383811662010000909204161461170d5760405162461bcd60e51b81526004016108009061208d565b6001600160a01b038316600090815260106020526040812090805b82548110156117825782818154811061175157634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201600001548261176e9190612262565b91508061177a81612413565b915050611728565b506001600160a01b0385166000908152602081905260408120546117a69083611958565b60408051808201909152601181527020bb30b4b630b136329021b932b234ba1d60791b602082015290915060006117dc8361199a565b905060006117fb6117ec83611abd565b6117f585611abd565b90611ae2565b9050808488111561181f5760405162461bcd60e51b81526004016108009190611e26565b50600061183861183189600b54611b88565b8990611958565b600d54600e546040516323b872dd60e01b81529293506001600160a01b03918216926323b872dd926118729216908e908690600401611df7565b602060405180830381600087803b15801561188c57600080fd5b505af11580156118a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c49190611daf565b5050505050505050505050565b6000826118e057506000610795565b60006118ec83856123a2565b9050826118f9858361227a565b146108a55760405162461bcd60e51b815260040161080090611f8a565b60006108a583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b9a565b60006108a583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bd1565b6060816119bf57506040805180820190915260018152600360fc1b6020820152610bc5565b8160005b81156119e957806119d381612413565b91506119e29050600a8361227a565b91506119c3565b60008167ffffffffffffffff811115611a1257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a3c576020820181803683370190505b5090505b8415611ab557611a516001836123c1565b9150611a5e600a8661242e565b611a69906030612262565b60f81b818381518110611a8c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611aae600a8661227a565b9450611a40565b949350505050565b611ac5611c7c565b506040805180820190915281518152602082810190820152919050565b80518251606091600091611af69190612262565b67ffffffffffffffff811115611b1c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b46576020820181803683370190505b5090506000602082019050611b648186602001518760000151611c02565b8451611b8090611b749083612262565b60208601518651611c02565b509392505050565b60006108a56103e861161285856118d1565b60008183611bbb5760405162461bcd60e51b81526004016108009190611e26565b506000611bc8848661227a565b95945050505050565b60008184841115611bf55760405162461bcd60e51b81526004016108009190611e26565b506000611bc884866123c1565b60208110611c3a5781518352611c19602084612262565b9250611c26602083612262565b9150611c336020826123c1565b9050611c02565b6000198115611c69576001611c508360206123c1565b611c5c906101006122d4565b611c6691906123c1565b90505b9151835183169219169190911790915250565b604051806040016040528060008152602001600081525090565b80356001600160a01b0381168114610bc557600080fd5b600060208284031215611cbe578081fd5b6108a582611c96565b60008060408385031215611cd9578081fd5b611ce283611c96565b9150611cf060208401611c96565b90509250929050565b600080600060608486031215611d0d578081fd5b611d1684611c96565b9250611d2460208501611c96565b9150604084013590509250925092565b60008060408385031215611d46578182fd5b611d4f83611c96565b91506020830135611d5f8161246e565b809150509250929050565b60008060408385031215611d7c578182fd5b611d8583611c96565b946020939093013593505050565b600060208284031215611da4578081fd5b81356108a58161246e565b600060208284031215611dc0578081fd5b81516108a58161246e565b600060208284031215611ddc578081fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b901515815260200190565b6000602080835283518082850152825b81811015611e5257858101830151858201604001528201611e36565b81811115611e635783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526019908201527f44657374696e6174696f6e2061646472657373206572726f7200000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f4f6e6c79207768697465206c6973742075736572732063616e20747261646500604082015260600190565b6020808252601f908201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604082015260600190565b60208082526023908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152626f636b60e81b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b6000821982111561227557612275612442565b500190565b60008261228957612289612458565b500490565b80825b60018086116122a057506122cb565b8187048211156122b2576122b2612442565b808616156122bf57918102915b9490941c938002612291565b94509492505050565b60006108a560001984846000826122ed575060016108a5565b816122fa575060006108a5565b8160018114612310576002811461231a57612347565b60019150506108a5565b60ff84111561232b5761232b612442565b6001841b91508482111561234157612341612442565b506108a5565b5060208310610133831016604e8410600b841016171561237a575081810a8381111561237557612375612442565b6108a5565b612387848484600161228e565b80860482111561239957612399612442565b02949350505050565b60008160001904831182151516156123bc576123bc612442565b500290565b6000828210156123d3576123d3612442565b500390565b6002810460018216806123ec57607f821691505b6020821081141561240d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561242757612427612442565b5060010190565b60008261243d5761243d612458565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b801515811461247c57600080fd5b5056fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a264697066735822122098cbd72518a8ad934c24b524bf258241ccfd4b581b7097fc604aec8f8d67651164736f6c63430008000033000000000000000000000000b7dd4d134b1794ee848e1af1a62b85d7b2ea9301000000000000000000000000b7dd4d134b1794ee848e1af1a62b85d7b2ea93010000000000000000000000006251e725cd45fb1af99354035a414a2c0890b929000000000000000000000000b7dd4d134b1794ee848e1af1a62b85d7b2ea9301

Deployed Bytecode

0x60806040526004361061023f5760003560e01c80637fa4cacb1161012e578063a69df4b5116100ab578063dd4670641161006f578063dd46706414610656578063dd62ed3e14610676578063e0bcc6a614610696578063f2fde38b146106ab578063f4d8ee66146106cb57610246565b8063a69df4b5146105d7578063a9059cbb146105ec578063ab05bfff1461060c578063b2bdfa7b1461062c578063b6c523241461064157610246565b80638f27e046116100f25780638f27e04614610558578063915f8bae1461056d57806395d89b4114610582578063a457c2d714610597578063a534ffc8146105b757610246565b80637fa4cacb146104b45780637ffc19f1146104d457806384b108aa146105035780638d14e127146105235780638da5cb5b1461054357610246565b8063313ce567116101bc5780636f9170f6116101805780636f9170f61461041f57806370a082311461043f578063715018a61461045f57806379a400e9146104745780637bade3ce1461049457610246565b8063313ce5671461038857806337bdc99b146103aa57806339509351146103ca5780635284e125146103ea5780636db01e931461040a57610246565b80631c1252f5116102035780631c1252f5146103145780632208ee1d1461032957806323b872dd1461033e5780632ddbd13a1461035e5780632f4e557b1461037357610246565b806306fdde031461024b578063095ea7b3146102765780630f96cf34146102a357806318160ddd146102d057806319f4ff2f146102f257610246565b3661024657005b600080fd5b34801561025757600080fd5b506102606106eb565b60405161026d9190611e26565b60405180910390f35b34801561028257600080fd5b50610296610291366004611d6a565b61077d565b60405161026d9190611e1b565b3480156102af57600080fd5b506102c36102be366004611dcb565b61079b565b60405161026d9190611de3565b3480156102dc57600080fd5b506102e56107c5565b60405161026d9190612235565b3480156102fe57600080fd5b5061031261030d366004611dcb565b6107cb565b005b34801561032057600080fd5b506102e561080e565b34801561033557600080fd5b506102e5610814565b34801561034a57600080fd5b50610296610359366004611cf9565b61081a565b34801561036a57600080fd5b506102e56108ac565b34801561037f57600080fd5b506102966108b2565b34801561039457600080fd5b5061039d6108bb565b60405161026d9190612254565b3480156103b657600080fd5b506103126103c5366004611dcb565b6108c0565b3480156103d657600080fd5b506102966103e5366004611d6a565b610af7565b3480156103f657600080fd5b50610312610405366004611d93565b610b4b565b34801561041657600080fd5b50610296610b9a565b34801561042b57600080fd5b5061029661043a366004611cad565b610ba8565b34801561044b57600080fd5b506102e561045a366004611cad565b610bca565b34801561046b57600080fd5b50610312610be5565b34801561048057600080fd5b5061029661048f366004611cad565b610c52565b3480156104a057600080fd5b506103126104af366004611d93565b610c67565b3480156104c057600080fd5b506103126104cf366004611cad565b610caf565b3480156104e057600080fd5b506104f46104ef366004611d6a565b610d0e565b60405161026d9392919061223e565b34801561050f57600080fd5b5061031261051e366004611cad565b610d50565b34801561052f57600080fd5b5061029661053e366004611d34565b610da7565b34801561054f57600080fd5b506102c3610e5a565b34801561056457600080fd5b506102c3610e69565b34801561057957600080fd5b506102c3610e7e565b34801561058e57600080fd5b50610260610e8d565b3480156105a357600080fd5b506102966105b2366004611d6a565b610e9c565b3480156105c357600080fd5b506103126105d2366004611cad565b610f15565b3480156105e357600080fd5b50610312610f6c565b3480156105f857600080fd5b50610296610607366004611d6a565b611008565b34801561061857600080fd5b50610312610627366004611dcb565b61101c565b34801561063857600080fd5b506102c3611056565b34801561064d57600080fd5b506102e5611065565b34801561066257600080fd5b50610312610671366004611dcb565b61106b565b34801561068257600080fd5b506102e5610691366004611cc7565b6110fb565b3480156106a257600080fd5b506102c3611126565b3480156106b757600080fd5b506103126106c6366004611cad565b611135565b3480156106d757600080fd5b506103126106e6366004611d34565b6111da565b6060600380546106fa906123d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610726906123d8565b80156107735780601f1061074857610100808354040283529160200191610773565b820191906000526020600020905b81548152906001019060200180831161075657829003601f168201915b5050505050905090565b600061079161078a611302565b8484611306565b5060015b92915050565b601181815481106107ab57600080fd5b6000918252602090912001546001600160a01b0316905081565b60025490565b6107d3611302565b6005546001600160a01b039081169116146108095760405162461bcd60e51b815260040161080090612013565b60405180910390fd5b600b55565b600b5481565b600a5481565b60006108278484846113ba565b6001600160a01b038416600090815260016020526040812081610848611302565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561088b5760405162461bcd60e51b815260040161080090611fcb565b61089f85610897611302565b858403611306565b60019150505b9392505050565b60095481565b600c5460ff1681565b601290565b6108c8611302565b6005546001600160a01b039081169116146108f55760405162461bcd60e51b815260040161080090612013565b60005b601154811015610af3576000601060006011848154811061092957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001812091505b8154811015610ade5781818154811061097957634e487b7160e01b600052603260045260246000fd5b906000526020600020906003020160000154600014806109c957508181815481106109b457634e487b7160e01b600052603260045260246000fd5b90600052602060002090600302016002015442105b156109d357610acc565b6000610a108383815481106109f857634e487b7160e01b600052603260045260246000fd5b906000526020600020906003020160010154866115ff565b905080838381548110610a3357634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201600001541015610a83576000838381548110610a6d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912060039091020155610aca565b80838381548110610aa457634e487b7160e01b600052603260045260246000fd5b90600052602060002090600302016000016000828254610ac491906123c1565b90915550505b505b80610ad681612413565b915050610950565b50508080610aeb90612413565b9150506108f8565b5050565b6000610791610b04611302565b848460016000610b12611302565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610b469190612262565b611306565b610b53611302565b6005546001600160a01b03908116911614610b805760405162461bcd60e51b815260040161080090612013565b600c80549115156101000261ff0019909216919091179055565b600c54610100900460ff1681565b6001600160a01b03811660009081526008602052604090205460ff165b919050565b6001600160a01b031660009081526020819052604090205490565b610bed611302565b6005546001600160a01b03908116911614610c1a5760405162461bcd60e51b815260040161080090612013565b6005546040516000916001600160a01b031690600080516020612480833981519152908390a3600580546001600160a01b0319169055565b600f6020526000908152604090205460ff1681565b610c6f611302565b6005546001600160a01b03908116911614610c9c5760405162461bcd60e51b815260040161080090612013565b600c805460ff1916911515919091179055565b610cb7611302565b6005546001600160a01b03908116911614610ce45760405162461bcd60e51b815260040161080090612013565b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60106020528160005260406000208181548110610d2a57600080fd5b600091825260209091206003909102018054600182015460029092015490935090915083565b610d58611302565b6005546001600160a01b03908116911614610d855760405162461bcd60e51b815260040161080090612013565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610db1611302565b6005546001600160a01b03908116911614610dde5760405162461bcd60e51b815260040161080090612013565b6001600160a01b03831660008181526008602052604090819020805460ff1916851515179055517fc3f09c45f9f7bb10149cba84a0539e17a269b35e7d3cdbb25cce5aef82dda30690610e32908590611e1b565b60405180910390a250506001600160a01b031660009081526008602052604090205460ff1690565b6005546001600160a01b031690565b600c546201000090046001600160a01b031681565b600e546001600160a01b031681565b6060600480546106fa906123d8565b60008060016000610eab611302565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610ef75760405162461bcd60e51b8152600401610800906121b9565b610f0b610f02611302565b85858403611306565b5060019392505050565b610f1d611302565b6005546001600160a01b03908116911614610f4a5760405162461bcd60e51b815260040161080090612013565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610f965760405162461bcd60e51b815260040161080090612176565b6007544211610fb75760405162461bcd60e51b81526004016108009061213f565b6006546005546040516001600160a01b03928316929091169060008051602061248083398151915290600090a3600654600580546001600160a01b0319166001600160a01b03909216919091179055565b6000610791611015611302565b84846113ba565b611024611302565b6005546001600160a01b039081169116146110515760405162461bcd60e51b815260040161080090612013565b600a55565b6005546001600160a01b031681565b60075490565b611073611302565b6005546001600160a01b039081169116146110a05760405162461bcd60e51b815260040161080090612013565b60058054600680546001600160a01b03199081166001600160a01b038416179091551690556110cf8142612262565b6007556005546040516000916001600160a01b031690600080516020612480833981519152908390a350565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600d546001600160a01b031681565b61113d611302565b6005546001600160a01b0390811691161461116a5760405162461bcd60e51b815260040161080090612013565b6001600160a01b0381166111905760405162461bcd60e51b815260040161080090611ebc565b6005546040516001600160a01b0380841692169060008051602061248083398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6111e2611302565b6005546001600160a01b0390811691161461120f5760405162461bcd60e51b815260040161080090612013565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6001600160a01b0382166112605760405162461bcd60e51b8152600401610800906121fe565b61126c60008383611618565b806002600082825461127e9190612262565b90915550506001600160a01b038216600090815260208190526040812080548392906112ab908490612262565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112ee908590612235565b60405180910390a3610af360008383611618565b3390565b6001600160a01b03831661132c5760405162461bcd60e51b8152600401610800906120c4565b6001600160a01b0382166113525760405162461bcd60e51b815260040161080090611f02565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906113ad908590612235565b60405180910390a3505050565b6001600160a01b0383166113e05760405162461bcd60e51b815260040161080090612048565b6001600160a01b0382166114065760405162461bcd60e51b815260040161080090611e79565b6001600160a01b0383166000908152600f602052604090205460ff168061144557506001600160a01b0382166000908152600f602052604090205460ff165b80156114595750600c54610100900460ff16155b156114c25761146783610ba8565b80611476575061147682610ba8565b8061148e57506005546001600160a01b038481169116145b806114a657506005546001600160a01b038381169116145b6114c25760405162461bcd60e51b815260040161080090612108565b6114cd838383611618565b6001600160a01b038316600090815260208190526040902054818110156115065760405162461bcd60e51b815260040161080090611f44565b61150f84610ba8565b158015611522575061152083610ba8565b155b80156115305750600c5460ff165b15611565576005546001600160a01b038581169116141561155a57611555838361161d565b611565565b6115658484846116da565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061159c908490612262565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115e69190612235565b60405180910390a36115f9848484611618565b50505050565b60006108a5620186a061161285856118d1565b90611916565b505050565b604080516060810182528281526020808201848152600a548385019081526001600160a01b03871660008181526010855295862080546001818101835582895295882087516003909202019081559351848601559151600290930192909255935291549091141561161857601180546001810182556000919091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180546001600160a01b0385166001600160a01b0319909116179055505050565b600c546001600160a01b0383811662010000909204161461170d5760405162461bcd60e51b81526004016108009061208d565b6001600160a01b038316600090815260106020526040812090805b82548110156117825782818154811061175157634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201600001548261176e9190612262565b91508061177a81612413565b915050611728565b506001600160a01b0385166000908152602081905260408120546117a69083611958565b60408051808201909152601181527020bb30b4b630b136329021b932b234ba1d60791b602082015290915060006117dc8361199a565b905060006117fb6117ec83611abd565b6117f585611abd565b90611ae2565b9050808488111561181f5760405162461bcd60e51b81526004016108009190611e26565b50600061183861183189600b54611b88565b8990611958565b600d54600e546040516323b872dd60e01b81529293506001600160a01b03918216926323b872dd926118729216908e908690600401611df7565b602060405180830381600087803b15801561188c57600080fd5b505af11580156118a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c49190611daf565b5050505050505050505050565b6000826118e057506000610795565b60006118ec83856123a2565b9050826118f9858361227a565b146108a55760405162461bcd60e51b815260040161080090611f8a565b60006108a583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b9a565b60006108a583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bd1565b6060816119bf57506040805180820190915260018152600360fc1b6020820152610bc5565b8160005b81156119e957806119d381612413565b91506119e29050600a8361227a565b91506119c3565b60008167ffffffffffffffff811115611a1257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a3c576020820181803683370190505b5090505b8415611ab557611a516001836123c1565b9150611a5e600a8661242e565b611a69906030612262565b60f81b818381518110611a8c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611aae600a8661227a565b9450611a40565b949350505050565b611ac5611c7c565b506040805180820190915281518152602082810190820152919050565b80518251606091600091611af69190612262565b67ffffffffffffffff811115611b1c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b46576020820181803683370190505b5090506000602082019050611b648186602001518760000151611c02565b8451611b8090611b749083612262565b60208601518651611c02565b509392505050565b60006108a56103e861161285856118d1565b60008183611bbb5760405162461bcd60e51b81526004016108009190611e26565b506000611bc8848661227a565b95945050505050565b60008184841115611bf55760405162461bcd60e51b81526004016108009190611e26565b506000611bc884866123c1565b60208110611c3a5781518352611c19602084612262565b9250611c26602083612262565b9150611c336020826123c1565b9050611c02565b6000198115611c69576001611c508360206123c1565b611c5c906101006122d4565b611c6691906123c1565b90505b9151835183169219169190911790915250565b604051806040016040528060008152602001600081525090565b80356001600160a01b0381168114610bc557600080fd5b600060208284031215611cbe578081fd5b6108a582611c96565b60008060408385031215611cd9578081fd5b611ce283611c96565b9150611cf060208401611c96565b90509250929050565b600080600060608486031215611d0d578081fd5b611d1684611c96565b9250611d2460208501611c96565b9150604084013590509250925092565b60008060408385031215611d46578182fd5b611d4f83611c96565b91506020830135611d5f8161246e565b809150509250929050565b60008060408385031215611d7c578182fd5b611d8583611c96565b946020939093013593505050565b600060208284031215611da4578081fd5b81356108a58161246e565b600060208284031215611dc0578081fd5b81516108a58161246e565b600060208284031215611ddc578081fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b901515815260200190565b6000602080835283518082850152825b81811015611e5257858101830151858201604001528201611e36565b81811115611e635783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526019908201527f44657374696e6174696f6e2061646472657373206572726f7200000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f4f6e6c79207768697465206c6973742075736572732063616e20747261646500604082015260600190565b6020808252601f908201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604082015260600190565b60208082526023908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152626f636b60e81b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b6000821982111561227557612275612442565b500190565b60008261228957612289612458565b500490565b80825b60018086116122a057506122cb565b8187048211156122b2576122b2612442565b808616156122bf57918102915b9490941c938002612291565b94509492505050565b60006108a560001984846000826122ed575060016108a5565b816122fa575060006108a5565b8160018114612310576002811461231a57612347565b60019150506108a5565b60ff84111561232b5761232b612442565b6001841b91508482111561234157612341612442565b506108a5565b5060208310610133831016604e8410600b841016171561237a575081810a8381111561237557612375612442565b6108a5565b612387848484600161228e565b80860482111561239957612399612442565b02949350505050565b60008160001904831182151516156123bc576123bc612442565b500290565b6000828210156123d3576123d3612442565b500390565b6002810460018216806123ec57607f821691505b6020821081141561240d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561242757612427612442565b5060010190565b60008261243d5761243d612458565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b801515811461247c57600080fd5b5056fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a264697066735822122098cbd72518a8ad934c24b524bf258241ccfd4b581b7097fc604aec8f8d67651164736f6c63430008000033

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

000000000000000000000000b7dd4d134b1794ee848e1af1a62b85d7b2ea9301000000000000000000000000b7dd4d134b1794ee848e1af1a62b85d7b2ea93010000000000000000000000006251e725cd45fb1af99354035a414a2c0890b929000000000000000000000000b7dd4d134b1794ee848e1af1a62b85d7b2ea9301

-----Decoded View---------------
Arg [0] : addr (address): 0xB7Dd4d134B1794ee848e1AF1A62b85d7b2Ea9301
Arg [1] : destinationAddress_ (address): 0xB7Dd4d134B1794ee848e1AF1A62b85d7b2Ea9301
Arg [2] : backCoinAddress_ (address): 0x6251E725CD45Fb1AF99354035a414A2C0890B929
Arg [3] : backAccountAddress_ (address): 0xB7Dd4d134B1794ee848e1AF1A62b85d7b2Ea9301

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000b7dd4d134b1794ee848e1af1a62b85d7b2ea9301
Arg [1] : 000000000000000000000000b7dd4d134b1794ee848e1af1a62b85d7b2ea9301
Arg [2] : 0000000000000000000000006251e725cd45fb1af99354035a414a2c0890b929
Arg [3] : 000000000000000000000000b7dd4d134b1794ee848e1af1a62b85d7b2ea9301


Deployed Bytecode Sourcemap

26056:5567:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6083:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8252:169;;;;;;;;;;-1:-1:-1;8252:169:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26633:29::-;;;;;;;;;;-1:-1:-1;26633:29:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7203:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27189:87::-;;;;;;;;;;-1:-1:-1;27189:87:0;;;;;:::i;:::-;;:::i;:::-;;26296:24;;;;;;;;;;;;;:::i;26262:27::-;;;;;;;;;;;;;:::i;8903:500::-;;;;;;;;;;-1:-1:-1;8903:500:0;;;;;:::i;:::-;;:::i;26207:46::-;;;;;;;;;;;;;:::i;26327:24::-;;;;;;;;;;;;;:::i;7045:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28054:722::-;;;;;;;;;;-1:-1:-1;28054:722:0;;;;;:::i;:::-;;:::i;9812:215::-;;;;;;;;;;-1:-1:-1;9812:215:0;;;;;:::i;:::-;;:::i;27600:102::-;;;;;;;;;;-1:-1:-1;27600:102:0;;;;;:::i;:::-;;:::i;26358:29::-;;;;;;;;;;;;;:::i;25669:110::-;;;;;;;;;;-1:-1:-1;25669:110:0;;;;;:::i;:::-;;:::i;7376:127::-;;;;;;;;;;-1:-1:-1;7376:127:0;;;;;:::i;:::-;;:::i;21725:148::-;;;;;;;;;;;;;:::i;26516:50::-;;;;;;;;;;-1:-1:-1;26516:50:0;;;;;:::i;:::-;;:::i;27502:92::-;;;;;;;;;;-1:-1:-1;27502:92:0;;;;;:::i;:::-;;:::i;27941:105::-;;;;;;;;;;-1:-1:-1;27941:105:0;;;;;:::i;:::-;;:::i;26573:53::-;;;;;;;;;;-1:-1:-1;26573:53:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;27389:105::-;;;;;;;;;;-1:-1:-1;27389:105:0;;;;;:::i;:::-;;:::i;25785:239::-;;;;;;;;;;-1:-1:-1;25785:239:0;;;;;:::i;:::-;;:::i;21082:79::-;;;;;;;;;;;;;:::i;26394:34::-;;;;;;;;;;;;;:::i;26473:::-;;;;;;;;;;;;;:::i;6302:104::-;;;;;;;;;;;;;:::i;10530:413::-;;;;;;;;;;-1:-1:-1;10530:413:0;;;;;:::i;:::-;;:::i;27284:99::-;;;;;;;;;;-1:-1:-1;27284:99:0;;;;;:::i;:::-;;:::i;22747:305::-;;;;;;;;;;;;;:::i;7716:175::-;;;;;;;;;;-1:-1:-1;7716:175:0;;;;;:::i;:::-;;:::i;27710:91::-;;;;;;;;;;-1:-1:-1;27710:91:0;;;;;:::i;:::-;;:::i;20816:21::-;;;;;;;;;;;;;:::i;22280:89::-;;;;;;;;;;;;;:::i;22445:226::-;;;;;;;;;;-1:-1:-1;22445:226:0;;;;;:::i;:::-;;:::i;7954:151::-;;;;;;;;;;-1:-1:-1;7954:151:0;;;;;:::i;:::-;;:::i;26435:31::-;;;;;;;;;;;;;:::i;22028:244::-;;;;;;;;;;-1:-1:-1;22028:244:0;;;;;:::i;:::-;;:::i;27809:124::-;;;;;;;;;;-1:-1:-1;27809:124:0;;;;;:::i;:::-;;:::i;6083:100::-;6137:13;6170:5;6163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6083:100;:::o;8252:169::-;8335:4;8352:39;8361:12;:10;:12::i;:::-;8375:7;8384:6;8352:8;:39::i;:::-;-1:-1:-1;8409:4:0;8252:169;;;;;:::o;26633:29::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26633:29:0;;-1:-1:-1;26633:29:0;:::o;7203:108::-;7291:12;;7203:108;:::o;27189:87::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;;;;;;;;;27251:9:::1;:17:::0;27189:87::o;26296:24::-;;;;:::o;26262:27::-;;;;:::o;8903:500::-;9043:4;9060:36;9070:6;9078:9;9089:6;9060:9;:36::i;:::-;-1:-1:-1;;;;;9144:19:0;;9117:24;9144:19;;;:11;:19;;;;;9117:24;9164:12;:10;:12::i;:::-;-1:-1:-1;;;;;9144:33:0;-1:-1:-1;;;;;9144:33:0;;;;;;;;;;;;;9117:60;;9216:6;9196:16;:26;;9188:79;;;;-1:-1:-1;;;9188:79:0;;;;;;;:::i;:::-;9303:57;9312:6;9320:12;:10;:12::i;:::-;9353:6;9334:16;:25;9303:8;:57::i;:::-;9391:4;9384:11;;;8903:500;;;;;;:::o;26207:46::-;;;;:::o;26327:24::-;;;;;;:::o;7045:93::-;7128:2;7045:93;:::o;28054:722::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;28116:9:::1;28112:657;28135:12;:19:::0;28131:23;::::1;28112:657;;;28175:31;28209:17;:34;28227:12;28240:1;28227:15;;;;;;-1:-1:-1::0;;;28227:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;28227:15:0::1;28209:34:::0;;;::::1;::::0;;;;;;;;;-1:-1:-1;28258:500:0::1;28280:19:::0;;28276:23;::::1;28258:500;;;28329:12;28342:1;28329:15;;;;;;-1:-1:-1::0;;;28329:15:0::1;;;;;;;;;;;;;;;;;;;:26;;;28359:1;28329:31;:80;;;;28382:12;28395:1;28382:15;;;;;;-1:-1:-1::0;;;28382:15:0::1;;;;;;;;;;;;;;;;;;;:27;;;28364:15;:45;28329:80;28326:93;;;28411:8;;28326:93;28438:21;28462:53;28477:12;28490:1;28477:15;;;;;;-1:-1:-1::0;;;28477:15:0::1;;;;;;;;;;;;;;;;;;;:31;;;28509:5;28462:14;:53::i;:::-;28438:77;;28566:13;28537:12;28550:1;28537:15;;;;;;-1:-1:-1::0;;;28537:15:0::1;;;;;;;;;;;;;;;;;;;:26;;;:42;28534:209;;;28632:1;28603:12;28616:1;28603:15;;;;;;-1:-1:-1::0;;;28603:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:30:::0;28534:209:::1;;;28710:13;28680:12;28693:1;28680:15;;;;;;-1:-1:-1::0;;;28680:15:0::1;;;;;;;;;;;;;;;;;;;:26;;;:43;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;28534:209:0::1;28258:500;;28301:3:::0;::::1;::::0;::::1;:::i;:::-;;;;28258:500;;;;28112:657;28156:3;;;;;:::i;:::-;;;;28112:657;;;;28054:722:::0;:::o;9812:215::-;9900:4;9917:80;9926:12;:10;:12::i;:::-;9940:7;9986:10;9949:11;:25;9961:12;:10;:12::i;:::-;-1:-1:-1;;;;;9949:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;9949:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;9917:8;:80::i;27600:102::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;27667:17:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;27667:27:0;;::::1;::::0;;;::::1;::::0;;27600:102::o;26358:29::-;;;;;;;;;:::o;25669:110::-;-1:-1:-1;;;;;25753:18:0;;25729:4;25753:18;;;:10;:18;;;;;;;;25669:110;;;;:::o;7376:127::-;-1:-1:-1;;;;;7477:18:0;7450:7;7477:18;;;;;;;;;;;;7376:127::o;21725:148::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;21816:6:::1;::::0;21795:40:::1;::::0;21832:1:::1;::::0;-1:-1:-1;;;;;21816:6:0::1;::::0;-1:-1:-1;;;;;;;;;;;21795:40:0;21832:1;;21795:40:::1;21846:6;:19:::0;;-1:-1:-1;;;;;;21846:19:0::1;::::0;;21725:148::o;26516:50::-;;;;;;;;;;;;;;;:::o;27502:92::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;27564:12:::1;:22:::0;;-1:-1:-1;;27564:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27502:92::o;27941:105::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;28012:19:::1;:26:::0;;-1:-1:-1;;;;;28012:26:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;28012:26:0;;::::1;::::0;;;::::1;::::0;;27941:105::o;26573:53::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26573:53:0;;-1:-1:-1;26573:53:0;:::o;27389:105::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;27460:19:::1;:26:::0;;-1:-1:-1;;;;;;27460:26:0::1;-1:-1:-1::0;;;;;27460:26:0;;;::::1;::::0;;;::::1;::::0;;27389:105::o;25785:239::-;25875:4;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25891:21:0;::::1;;::::0;;;:10:::1;:21;::::0;;;;;;:31;;-1:-1:-1;;25891:31:0::1;::::0;::::1;;;::::0;;25938:39;::::1;::::0;::::1;::::0;25891:31;;25938:39:::1;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;;;25995:21:0::1;;::::0;;;:10:::1;:21;::::0;;;;;::::1;;::::0;25785:239::o;21082:79::-;21147:6;;-1:-1:-1;;;;;21147:6:0;21082:79;:::o;26394:34::-;;;;;;-1:-1:-1;;;;;26394:34:0;;:::o;26473:::-;;;-1:-1:-1;;;;;26473:34:0;;:::o;6302:104::-;6358:13;6391:7;6384:14;;;;;:::i;10530:413::-;10623:4;10640:24;10667:11;:25;10679:12;:10;:12::i;:::-;-1:-1:-1;;;;;10667:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10667:25:0;;;:34;;;;;;;;;;;-1:-1:-1;10720:35:0;;;;10712:85;;;;-1:-1:-1;;;10712:85:0;;;;;;;:::i;:::-;10833:67;10842:12;:10;:12::i;:::-;10856:7;10884:15;10865:16;:34;10833:8;:67::i;:::-;-1:-1:-1;10931:4:0;;10530:413;-1:-1:-1;;;10530:413:0:o;27284:99::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;27352:16:::1;:23:::0;;-1:-1:-1;;;;;;27352:23:0::1;-1:-1:-1::0;;;;;27352:23:0;;;::::1;::::0;;;::::1;::::0;;27284:99::o;22747:305::-;22799:14;;-1:-1:-1;;;;;22799:14:0;22817:10;22799:28;22791:76;;;;-1:-1:-1;;;22791:76:0;;;;;;;:::i;:::-;22904:9;;22886:15;:27;22878:72;;;;-1:-1:-1;;;22878:72:0;;;;;;;:::i;:::-;22995:14;;22987:6;;22966:44;;-1:-1:-1;;;;;22995:14:0;;;;22987:6;;;;-1:-1:-1;;;;;;;;;;;22966:44:0;22995:14;;22966:44;23030:14;;23021:6;:23;;-1:-1:-1;;;;;;23021:23:0;-1:-1:-1;;;;;23030:14:0;;;23021:23;;;;;;22747:305::o;7716:175::-;7802:4;7819:42;7829:12;:10;:12::i;:::-;7843:9;7854:6;7819:9;:42::i;27710:91::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;27774:12:::1;:19:::0;27710:91::o;20816:21::-;;;-1:-1:-1;;;;;20816:21:0;;:::o;22280:89::-;22352:9;;22280:89;:::o;22445:226::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;22526:6:::1;::::0;;22509:14:::1;:23:::0;;-1:-1:-1;;;;;;22509:23:0;;::::1;-1:-1:-1::0;;;;;22526:6:0;::::1;22509:23;::::0;;;22543:19:::1;::::0;;22585:22:::1;22603:4:::0;22585:15:::1;:22;:::i;:::-;22573:9;:34:::0;22644:6:::1;::::0;22623:40:::1;::::0;22660:1:::1;::::0;-1:-1:-1;;;;;22644:6:0::1;::::0;-1:-1:-1;;;;;;;;;;;22623:40:0;22660:1;;22623:40:::1;22445:226:::0;:::o;7954:151::-;-1:-1:-1;;;;;8070:18:0;;;8043:7;8070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7954:151::o;26435:31::-;;;-1:-1:-1;;;;;26435:31:0;;:::o;22028:244::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22117:22:0;::::1;22109:73;;;;-1:-1:-1::0;;;22109:73:0::1;;;;;;;:::i;:::-;22219:6;::::0;22198:38:::1;::::0;-1:-1:-1;;;;;22198:38:0;;::::1;::::0;22219:6:::1;::::0;-1:-1:-1;;;;;;;;;;;22198:38:0;22219:6:::1;::::0;22198:38:::1;22247:6;:17:::0;;-1:-1:-1;;;;;;22247:17:0::1;-1:-1:-1::0;;;;;22247:17:0;;;::::1;::::0;;;::::1;::::0;;22028:244::o;27809:124::-;21304:12;:10;:12::i;:::-;21294:6;;-1:-1:-1;;;;;21294:6:0;;;:22;;;21286:67;;;;-1:-1:-1;;;21286:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27892:26:0;;;::::1;;::::0;;;:20:::1;:26;::::0;;;;:33;;-1:-1:-1;;27892:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27809:124::o;12453:399::-;-1:-1:-1;;;;;12537:21:0;;12529:65;;;;-1:-1:-1;;;12529:65:0;;;;;;;:::i;:::-;12607:49;12636:1;12640:7;12649:6;12607:20;:49::i;:::-;12685:6;12669:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12702:18:0;;:9;:18;;;;;;;;;;:28;;12724:6;;12702:9;:28;;12724:6;;12702:28;:::i;:::-;;;;-1:-1:-1;;12746:37:0;;-1:-1:-1;;;;;12746:37:0;;;12763:1;;12746:37;;;;12776:6;;12746:37;:::i;:::-;;;;;;;;12796:48;12824:1;12828:7;12837:6;12796:19;:48::i;605:98::-;685:10;605:98;:::o;14214:380::-;-1:-1:-1;;;;;14350:19:0;;14342:68;;;;-1:-1:-1;;;14342:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14429:21:0;;14421:68;;;;-1:-1:-1;;;14421:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14502:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14554:32;;;;;14532:6;;14554:32;:::i;:::-;;;;;;;;14214:380;;;:::o;28786:1267::-;-1:-1:-1;;;;;28898:20:0;;28890:70;;;;-1:-1:-1;;;28890:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28979:23:0;;28971:71;;;;-1:-1:-1;;;28971:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29057:28:0;;;;;;:20;:28;;;;;;;;;:63;;-1:-1:-1;;;;;;29089:31:0;;;;;;:20;:31;;;;;;;;29057:63;29056:87;;;;-1:-1:-1;29126:17:0;;;;;;;29125:18;29056:87;29053:253;;;29167:21;29181:6;29167:13;:21::i;:::-;:49;;;;29192:24;29206:9;29192:13;:24::i;:::-;29167:69;;;-1:-1:-1;29230:6:0;;-1:-1:-1;;;;;29220:16:0;;;29230:6;;29220:16;29167:69;:92;;;-1:-1:-1;29253:6:0;;-1:-1:-1;;;;;29240:19:0;;;29253:6;;29240:19;29167:92;29159:135;;;;-1:-1:-1;;;29159:135:0;;;;;;;:::i;:::-;29318:47;29339:6;29347:9;29358:6;29318:20;:47::i;:::-;-1:-1:-1;;;;;29412:17:0;;29388:21;29412:17;;;;;;;;;;;29448:23;;;;29440:74;;;;-1:-1:-1;;;29440:74:0;;;;;;;:::i;:::-;29539:21;29553:6;29539:13;:21::i;:::-;29538:22;:51;;;;;29565:24;29579:9;29565:13;:24::i;:::-;29564:25;29538:51;:67;;;;-1:-1:-1;29593:12:0;;;;29538:67;29535:260;;;29634:6;;-1:-1:-1;;;;;29624:16:0;;;29634:6;;29624:16;29621:163;;;29660:30;29673:9;29683:6;29660:12;:30::i;:::-;29621:163;;;29729:39;29744:6;29751:9;29761:6;29729:14;:39::i;:::-;-1:-1:-1;;;;;29832:17:0;;;:9;:17;;;;;;;;;;;29852:22;;;29832:42;;29896:20;;;;;;;;:30;;29868:6;;29832:9;29896:30;;29868:6;;29896:30;:::i;:::-;;;;;;;;29959:9;-1:-1:-1;;;;;29942:35:0;29951:6;-1:-1:-1;;;;;29942:35:0;;29970:6;29942:35;;;;;;:::i;:::-;;;;;;;;29999:46;30019:6;30027:9;30038:6;29999:19;:46::i;:::-;28786:1267;;;;:::o;31275:165::-;31352:7;31379:53;31416:5;31379:18;:7;31391:5;31379:11;:18::i;:::-;:22;;:53::i;15194:125::-;;;;:::o;30061:311::-;30163:36;;;;;;;;;;;;;;;;;;30186:12;;30163:36;;;;;;-1:-1:-1;;;;;30210:28:0;;30136:24;30210:28;;;:17;:28;;;;;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30267:28;;:35;;30163:36;;30267:40;30264:99;;;30323:12;:28;;;;;;;-1:-1:-1;30323:28:0;;;;;;;;-1:-1:-1;;;;;30323:28:0;;-1:-1:-1;;;;;;30323:28:0;;;;;;30061:311;;;:::o;30380:884::-;30493:19;;-1:-1:-1;;;;;30480:32:0;;;30493:19;;;;;30480:32;30472:70;;;;-1:-1:-1;;;30472:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30589:25:0;;30555:31;30589:25;;;:17;:25;;;;;;30555:31;30658:111;30678:19;;30675:22;;30658:111;;;30731:12;30744:1;30731:15;;;;;;-1:-1:-1;;;30731:15:0;;;;;;;;;;;;;;;;;;;:26;;;30717:40;;;;;:::i;:::-;;-1:-1:-1;30698:3:0;;;;:::i;:::-;;;;30658:111;;;-1:-1:-1;;;;;;30807:17:0;;30781:23;30807:17;;;;;;;;;;;:33;;30829:10;30807:21;:33::i;:::-;30851:40;;;;;;;;;;;;-1:-1:-1;;;30851:40:0;;;;30781:59;;-1:-1:-1;30851:18:0;30924:33;30781:59;30924:16;:33::i;:::-;30902:55;;30968:21;30992:38;31014:15;:5;:13;:15::i;:::-;30992:14;:4;:12;:14::i;:::-;:21;;:38::i;:::-;30968:62;-1:-1:-1;30968:62:0;31049:25;;;;31041:43;;;;-1:-1:-1;;;31041:43:0;;;;;;;;:::i;:::-;;31097:18;31118:49;31129:37;31149:6;31156:9;;31129:19;:37::i;:::-;31118:6;;:10;:49::i;:::-;31187:16;;31218:19;;31180:76;;-1:-1:-1;;;31180:76:0;;31097:70;;-1:-1:-1;;;;;;31187:16:0;;;;31180:37;;:76;;31218:19;;31238:6;;31097:70;;31180:76;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30380:884;;;;;;;;;;:::o;17673:471::-;17731:7;17976:6;17972:47;;-1:-1:-1;18006:1:0;17999:8;;17972:47;18031:9;18043:5;18047:1;18043;:5;:::i;:::-;18031:17;-1:-1:-1;18076:1:0;18067:5;18071:1;18031:17;18067:5;:::i;:::-;:10;18059:56;;;;-1:-1:-1;;;18059:56:0;;;;;;;:::i;18620:132::-;18678:7;18705:39;18709:1;18712;18705:39;;;;;;;;;;;;;;;;;:3;:39::i;16783:136::-;16841:7;16868:43;16872:1;16875;16868:43;;;;;;;;;;;;;;;;;:3;:43::i;23337:723::-;23393:13;23614:10;23610:53;;-1:-1:-1;23641:10:0;;;;;;;;;;;;-1:-1:-1;;;23641:10:0;;;;;;23610:53;23688:5;23673:12;23729:78;23736:9;;23729:78;;23762:8;;;;:::i;:::-;;-1:-1:-1;23785:10:0;;-1:-1:-1;23793:2:0;23785:10;;:::i;:::-;;;23729:78;;;23817:19;23849:6;23839:17;;;;;;-1:-1:-1;;;23839:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23839:17:0;;23817:39;;23867:154;23874:10;;23867:154;;23901:11;23911:1;23901:11;;:::i;:::-;;-1:-1:-1;23970:10:0;23978:2;23970:5;:10;:::i;:::-;23957:24;;:2;:24;:::i;:::-;23944:39;;23927:6;23934;23927:14;;;;;;-1:-1:-1;;;23927:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;23927:56:0;;;;;;;;-1:-1:-1;23998:11:0;24007:2;23998:11;;:::i;:::-;;;23867:154;;;24045:6;23337:723;-1:-1:-1;;;;23337:723:0:o;3013:216:1:-;3073:12;;:::i;:::-;-1:-1:-1;3191:30:1;;;;;;;;;3197:18;;3191:30;;3158:4;3148:15;;;3191:30;;;;3013:216;;;:::o;24988:362::-;25135:10;;25123:9;;25066:13;;25092:17;;25123:22;;25135:10;25123:22;:::i;:::-;25112:34;;;;;;-1:-1:-1;;;25112:34:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25112:34:1;;25092:54;;25157:11;25209:2;25204:3;25200:12;25190:22;;25224:36;25231:6;25239:4;:9;;;25250:4;:9;;;25224:6;:36::i;:::-;25287:9;;25271:50;;25278:18;;:6;:18;:::i;:::-;25298:10;;;;25310;;25271:6;:50::i;:::-;-1:-1:-1;25339:3:1;24988:362;-1:-1:-1;;;24988:362:1:o;31446:170:0:-;31528:7;31555:53;31592:5;31555:18;:7;31567:5;31555:11;:18::i;19248:278::-;19334:7;19369:12;19362:5;19354:28;;;;-1:-1:-1;;;19354:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19393:9:0;19405:5;19409:1;19405;:5;:::i;:::-;19393:17;19248:278;-1:-1:-1;;;;;19248:278:0:o;17222:192::-;17308:7;17344:12;17336:6;;;;17328:29;;;;-1:-1:-1;;;17328:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17368:9:0;17380:5;17384:1;17380;:5;:::i;2165:641:1:-;2302:2;2294:4;:10;2288:172;;2374:10;;2361:24;;2414:10;2422:2;2368:4;2414:10;:::i;:::-;;-1:-1:-1;2439:9:1;2446:2;2439:9;;:::i;:::-;;-1:-1:-1;2306:10:1;2314:2;2306:10;;:::i;:::-;;;2288:172;;;-1:-1:-1;;2546:8:1;;2542:70;;2599:1;2586:9;2591:4;2586:2;:9;:::i;:::-;2578:18;;:3;:18;:::i;:::-;:22;;;;:::i;:::-;2571:29;;2542:70;2665:10;;2721:11;;2717:22;;2677:9;;2661:26;2766:21;;;;2753:35;;;-1:-1:-1;2631:168:1:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;14:175:2:-;84:20;;-1:-1:-1;;;;;133:31:2;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:329::-;;;1149:2;1137:9;1128:7;1124:23;1120:32;1117:2;;;1170:6;1162;1155:22;1117:2;1198:31;1219:9;1198:31;:::i;:::-;1188:41;;1279:2;1268:9;1264:18;1251:32;1292:30;1316:5;1292:30;:::i;:::-;1341:5;1331:15;;;1107:245;;;;;:::o;1357:266::-;;;1486:2;1474:9;1465:7;1461:23;1457:32;1454:2;;;1507:6;1499;1492:22;1454:2;1535:31;1556:9;1535:31;:::i;:::-;1525:41;1613:2;1598:18;;;;1585:32;;-1:-1:-1;;;1444:179:2:o;1628:253::-;;1737:2;1725:9;1716:7;1712:23;1708:32;1705:2;;;1758:6;1750;1743:22;1705:2;1802:9;1789:23;1821:30;1845:5;1821:30;:::i;1886:257::-;;2006:2;1994:9;1985:7;1981:23;1977:32;1974:2;;;2027:6;2019;2012:22;1974:2;2064:9;2058:16;2083:30;2107:5;2083:30;:::i;2148:190::-;;2260:2;2248:9;2239:7;2235:23;2231:32;2228:2;;;2281:6;2273;2266:22;2228:2;-1:-1:-1;2309:23:2;;2218:120;-1:-1:-1;2218:120:2:o;2343:203::-;-1:-1:-1;;;;;2507:32:2;;;;2489:51;;2477:2;2462:18;;2444:102::o;2551:375::-;-1:-1:-1;;;;;2809:15:2;;;2791:34;;2861:15;;;;2856:2;2841:18;;2834:43;2908:2;2893:18;;2886:34;;;;2741:2;2726:18;;2708:218::o;2931:187::-;3096:14;;3089:22;3071:41;;3059:2;3044:18;;3026:92::o;3123:603::-;;3264:2;3293;3282:9;3275:21;3325:6;3319:13;3368:6;3363:2;3352:9;3348:18;3341:34;3393:4;3406:140;3420:6;3417:1;3414:13;3406:140;;;3515:14;;;3511:23;;3505:30;3481:17;;;3500:2;3477:26;3470:66;3435:10;;3406:140;;;3564:6;3561:1;3558:13;3555:2;;;3634:4;3629:2;3620:6;3609:9;3605:22;3601:31;3594:45;3555:2;-1:-1:-1;3710:2:2;3689:15;-1:-1:-1;;3685:29:2;3670:45;;;;3717:2;3666:54;;3244:482;-1:-1:-1;;;3244:482:2:o;3731:399::-;3933:2;3915:21;;;3972:2;3952:18;;;3945:30;4011:34;4006:2;3991:18;;3984:62;-1:-1:-1;;;4077:2:2;4062:18;;4055:33;4120:3;4105:19;;3905:225::o;4135:402::-;4337:2;4319:21;;;4376:2;4356:18;;;4349:30;4415:34;4410:2;4395:18;;4388:62;-1:-1:-1;;;4481:2:2;4466:18;;4459:36;4527:3;4512:19;;4309:228::o;4542:398::-;4744:2;4726:21;;;4783:2;4763:18;;;4756:30;4822:34;4817:2;4802:18;;4795:62;-1:-1:-1;;;4888:2:2;4873:18;;4866:32;4930:3;4915:19;;4716:224::o;4945:402::-;5147:2;5129:21;;;5186:2;5166:18;;;5159:30;5225:34;5220:2;5205:18;;5198:62;-1:-1:-1;;;5291:2:2;5276:18;;5269:36;5337:3;5322:19;;5119:228::o;5352:397::-;5554:2;5536:21;;;5593:2;5573:18;;;5566:30;5632:34;5627:2;5612:18;;5605:62;-1:-1:-1;;;5698:2:2;5683:18;;5676:31;5739:3;5724:19;;5526:223::o;5754:404::-;5956:2;5938:21;;;5995:2;5975:18;;;5968:30;6034:34;6029:2;6014:18;;6007:62;-1:-1:-1;;;6100:2:2;6085:18;;6078:38;6148:3;6133:19;;5928:230::o;6163:356::-;6365:2;6347:21;;;6384:18;;;6377:30;6443:34;6438:2;6423:18;;6416:62;6510:2;6495:18;;6337:182::o;6524:401::-;6726:2;6708:21;;;6765:2;6745:18;;;6738:30;6804:34;6799:2;6784:18;;6777:62;-1:-1:-1;;;6870:2:2;6855:18;;6848:35;6915:3;6900:19;;6698:227::o;6930:349::-;7132:2;7114:21;;;7171:2;7151:18;;;7144:30;7210:27;7205:2;7190:18;;7183:55;7270:2;7255:18;;7104:175::o;7284:400::-;7486:2;7468:21;;;7525:2;7505:18;;;7498:30;7564:34;7559:2;7544:18;;7537:62;-1:-1:-1;;;7630:2:2;7615:18;;7608:34;7674:3;7659:19;;7458:226::o;7689:355::-;7891:2;7873:21;;;7930:2;7910:18;;;7903:30;7969:33;7964:2;7949:18;;7942:61;8035:2;8020:18;;7863:181::o;8049:355::-;8251:2;8233:21;;;8290:2;8270:18;;;8263:30;8329:33;8324:2;8309:18;;8302:61;8395:2;8380:18;;8223:181::o;8409:399::-;8611:2;8593:21;;;8650:2;8630:18;;;8623:30;8689:34;8684:2;8669:18;;8662:62;-1:-1:-1;;;8755:2:2;8740:18;;8733:33;8798:3;8783:19;;8583:225::o;8813:401::-;9015:2;8997:21;;;9054:2;9034:18;;;9027:30;9093:34;9088:2;9073:18;;9066:62;-1:-1:-1;;;9159:2:2;9144:18;;9137:35;9204:3;9189:19;;8987:227::o;9219:355::-;9421:2;9403:21;;;9460:2;9440:18;;;9433:30;9499:33;9494:2;9479:18;;9472:61;9565:2;9550:18;;9393:181::o;9579:177::-;9725:25;;;9713:2;9698:18;;9680:76::o;9761:319::-;9963:25;;;10019:2;10004:18;;9997:34;;;;10062:2;10047:18;;10040:34;9951:2;9936:18;;9918:162::o;10085:184::-;10257:4;10245:17;;;;10227:36;;10215:2;10200:18;;10182:87::o;10274:128::-;;10345:1;10341:6;10338:1;10335:13;10332:2;;;10351:18;;:::i;:::-;-1:-1:-1;10387:9:2;;10322:80::o;10407:120::-;;10473:1;10463:2;;10478:18;;:::i;:::-;-1:-1:-1;10512:9:2;;10453:74::o;10532:453::-;10628:6;10651:5;10665:314;10714:1;10751:2;10741:8;10738:16;10728:2;;10758:5;;;10728:2;10799:4;10794:3;10790:14;10784:4;10781:24;10778:2;;;10808:18;;:::i;:::-;10858:2;10848:8;10844:17;10841:2;;;10873:16;;;;10841:2;10952:17;;;;;10912:15;;10665:314;;;10609:376;;;;;;;:::o;10990:139::-;;11079:44;-1:-1:-1;;11106:8:2;11100:4;11134:922;11218:8;11208:2;;-1:-1:-1;11259:1:2;11273:5;;11208:2;11307:4;11297:2;;-1:-1:-1;11344:1:2;11358:5;;11297:2;11389:4;11407:1;11402:59;;;;11475:1;11470:183;;;;11382:271;;11402:59;11432:1;11423:10;;11446:5;;;11470:183;11507:3;11497:8;11494:17;11491:2;;;11514:18;;:::i;:::-;11570:1;11560:8;11556:16;11547:25;;11598:3;11591:5;11588:14;11585:2;;;11605:18;;:::i;:::-;11638:5;;;11382:271;;11737:2;11727:8;11724:16;11718:3;11712:4;11709:13;11705:36;11699:2;11689:8;11686:16;11681:2;11675:4;11672:12;11668:35;11665:77;11662:2;;;-1:-1:-1;11774:19:2;;;11809:14;;;11806:2;;;11826:18;;:::i;:::-;11859:5;;11662:2;11906:42;11944:3;11934:8;11928:4;11925:1;11906:42;:::i;:::-;11981:6;11976:3;11972:16;11963:7;11960:29;11957:2;;;11992:18;;:::i;:::-;12030:20;;11198:858;-1:-1:-1;;;;11198:858:2:o;12061:168::-;;12167:1;12163;12159:6;12155:14;12152:1;12149:21;12144:1;12137:9;12130:17;12126:45;12123:2;;;12174:18;;:::i;:::-;-1:-1:-1;12214:9:2;;12113:116::o;12234:125::-;;12302:1;12299;12296:8;12293:2;;;12307:18;;:::i;:::-;-1:-1:-1;12344:9:2;;12283:76::o;12364:380::-;12449:1;12439:12;;12496:1;12486:12;;;12507:2;;12561:4;12553:6;12549:17;12539:27;;12507:2;12614;12606:6;12603:14;12583:18;12580:38;12577:2;;;12660:10;12655:3;12651:20;12648:1;12641:31;12695:4;12692:1;12685:15;12723:4;12720:1;12713:15;12577:2;;12419:325;;;:::o;12749:135::-;;-1:-1:-1;;12809:17:2;;12806:2;;;12829:18;;:::i;:::-;-1:-1:-1;12876:1:2;12865:13;;12796:88::o;12889:112::-;;12947:1;12937:2;;12952:18;;:::i;:::-;-1:-1:-1;12986:9:2;;12927:74::o;13006:127::-;13067:10;13062:3;13058:20;13055:1;13048:31;13098:4;13095:1;13088:15;13122:4;13119:1;13112:15;13138:127;13199:10;13194:3;13190:20;13187:1;13180:31;13230:4;13227:1;13220:15;13254:4;13251:1;13244:15;13270:120;13358:5;13351:13;13344:21;13337:5;13334:32;13324:2;;13380:1;13377;13370:12;13324:2;13314:76;:::o

Swarm Source

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