ETH Price: $2,911.09 (-3.12%)
Gas: 2 Gwei

Token

Frankencoin Pool Share (FPS)
 

Overview

Max Total Supply

21,544.346900318660796 FPS

Holders

1

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
21,544.346900318660796 FPS

Value
$0.00
0x5a57dd9c623e1403af1d810673183d89724a4e0c
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:
Equity

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Frankencoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC20PermitLight.sol";
import "./Equity.sol";
import "./IReserve.sol";
import "./IFrankencoin.sol";

contract Frankencoin is ERC20PermitLight, IFrankencoin {

   uint256 public constant MIN_FEE = 1000 * (10**18);
   uint256 public immutable MIN_APPLICATION_PERIOD; // for example 10 days

   IReserve override public immutable reserve;
   uint256 private minterReserveE6;

   mapping (address => uint256) public minters;
   mapping (address => address) public positions;

   event MinterApplied(address indexed minter, uint256 applicationPeriod, uint256 applicationFee, string message);
   event MinterDenied(address indexed minter, string message);

   /**
    * Initiates the Frankencoin with the provided minimum application period for new plugins
    * in seconds, for example 10 days, i.e. 3600*24*10 = 864000
    */
   constructor(uint256 _minApplicationPeriod) ERC20(18){
      MIN_APPLICATION_PERIOD = _minApplicationPeriod;
      reserve = new Equity(this);
   }

   function name() override external pure returns (string memory){
      return "Frankencoin V1";
   }

   function symbol() override external pure returns (string memory){
      return "ZCHF";
   }

   /**
    * @notice Minting is suggested either by (1) person applying for a new original position,
    * or (2) by the minting hub when cloning a position. The minting hub has the priviledge
    * to call with zero application fee and period.
    * @param _minter             address of the position want to add to the minters
    * @param _applicationPeriod  application period in seconds
    * @param _applicationFee     application fee in parts per million
    * @param _message            message string
    */
   function suggestMinter(address _minter, uint256 _applicationPeriod, 
      uint256 _applicationFee, string calldata _message) override external 
   {
      require(_applicationPeriod >= MIN_APPLICATION_PERIOD || totalSupply() == 0, "period too short");
      require(_applicationFee >= MIN_FEE || totalSupply() == 0, "fee too low");
      require(minters[_minter] == 0, "already registered");
      _transfer(msg.sender, address(reserve), _applicationFee);
      minters[_minter] = block.timestamp + _applicationPeriod;
      emit MinterApplied(_minter, _applicationPeriod, _applicationFee, _message);
   }

   function minterReserve() public view returns (uint256) {
      return minterReserveE6 / 1000000;
   }

   function registerPosition(address _position) override external {
      require(isMinter(msg.sender), "not minter");
      positions[_position] = msg.sender;
   }

   /**
    * @notice Get reserve balance (amount of ZCHF)
    * @return ZCHF in dec18 format
    */
   function equity() public view returns (uint256) {
      uint256 balance = balanceOf(address(reserve));
      uint256 minReserve = minterReserve();
      if (balance <= minReserve){
        return 0;
      } else {
        return balance - minReserve;
      }
    }

   function denyMinter(address _minter, address[] calldata _helpers, string calldata _message) override external {
      require(block.timestamp <= minters[_minter], "too late");
      require(reserve.isQualified(msg.sender, _helpers), "not qualified");
      delete minters[_minter];
      emit MinterDenied(_minter, _message);
   }

   /**
 * @notice Mint amount of ZCHF for address _target
 * @param _target       address that receives ZCHF if it's a minter
 * @param _amount       amount ZCHF before fees and pool contribution requested
 *                      number in dec18 format
 * @param _reservePPM   reserve requirement in parts per million
 * @param _feesPPM      fees in parts per million
 */
   function mint(address _target, uint256 _amount, uint32 _reservePPM, uint32 _feesPPM) override external minterOnly {
      uint256 _minterReserveE6 = _amount * _reservePPM;
      uint256 reserveMint = (_minterReserveE6 + 999_999) / 1000_000; // make sure rounded up
      uint256 fees = (_amount * _feesPPM + 999_999) / 1000_000; // make sure rounded up
      _mint(_target, _amount - reserveMint - fees);
      _mint(address(reserve), reserveMint + fees);
      minterReserveE6 += reserveMint * 1000_000;
   }

   /**
    * @notice Mint amount of ZCHF for address _target
    * @param _target   address that receives ZCHF if it's a minter
    * @param _amount   amount in dec18 format
    */
   function mint(address _target, uint256 _amount) override external minterOnly {
      _mint(_target, _amount);
   }

   function burn(uint256 _amount) external {
      _burn(msg.sender, _amount);
   }

   /**
    * Burn that amount without reclaiming the reserve.
    * The caller is only allowed to use this method for tokens also minted through the caller with the same _reservePPM amount.
    * For example, if someone minted 50 ZCHF earlier with a 20% reserve requirement (200000 ppm), they got 40 ZCHF and paid
    * 10 ZCHF into the reserve. Now they want to repay the debt by burning 50 ZCHF. When doing so using this method, the 10 ZCHF
    * that went into the reserve are not returned. Instead, they are donated to the reserve pool, making the pool share holders
    * richer. This can make sense in combination with 'notifyLoss', i.e. when it is the pool share holders that bear the risk
    * and depending on the outcome they make a profit or a loss.
    */
   function burn(uint256 amount, uint32 reservePPM) external override minterOnly {
      _burn(msg.sender, amount);
      minterReserveE6 -= amount * reservePPM;
   }

   function calculateAssignedReserve(uint256 mintedAmount, uint32 _reservePPM) public view returns (uint256) {
      uint256 theoreticalReserve = _reservePPM * mintedAmount / 1000000;
      uint256 currentReserve = balanceOf(address(reserve));
      if (currentReserve < minterReserve()){
         // not enough reserves, owner has to take a loss
         return theoreticalReserve * currentReserve / minterReserve();
      } else {
         return theoreticalReserve;
      }
   }

   /**
    * Burns the target amount taking the tokens to be burned from the payer and the payer's reserve.
    * The caller is only allowed to use this method for tokens also minted through the caller with the same _reservePPM amount.
    * Example: the calling contract has previously minted 100 ZCHF with a reserve ratio of 20% (i.e. 200000 ppm). To burn half
    * of that again, the minter calls burnFrom with a target amount of 50 ZCHF. Assuming that reserves are only 90% covered,
    * this call will deduct 41 ZCHF from the payer's balance and 9 from the reserve, while reducing the minter reserve by 10.
    */
   function burnFrom(address payer, uint256 targetTotalBurnAmount, uint32 _reservePPM) external override minterOnly returns (uint256) {
      uint256 assigned = calculateAssignedReserve(targetTotalBurnAmount, _reservePPM);
      _transfer(address(reserve), payer, assigned); 
      _burn(payer, targetTotalBurnAmount); // and burn everything
      minterReserveE6 -= targetTotalBurnAmount * _reservePPM; // reduce reserve requirements by original ratio
      return assigned;
   }

   /**
    * Burns the provided number of tokens plus whatever reserves are associated with that amount given the reserve requirement.
    * The caller is only allowed to use this method for tokens also minted through the caller with the same _reservePPM amount.
    * Example: the calling contract has previously minted 100 ZCHF with a reserve ratio of 20% (i.e. 200000 ppm). Now they have
    * 41 ZCHF that they do not need so they decide to repay that amount. Assuming the reserves are only 90% covered,
    * the call to burnWithReserve will burn the 41 plus 9 from the reserve, reducing the outstanding 'debt' of the caller by
    * 50 ZCHF in total. This total is returned by the method so the caller knows how much less they owe.
    */
   function burnWithReserve(uint256 _amountExcludingReserve /* 41 */, uint32 _reservePPM /* 20% */) 
      external override minterOnly returns (uint256) {
      uint256 currentReserve = balanceOf(address(reserve)); // 18, 10% below what we should have
      uint256 minterReserve_ = minterReserve(); // 20
      uint256 adjustedReservePPM = currentReserve < minterReserve_ ? _reservePPM * currentReserve / minterReserve_ : _reservePPM; // 18%
      uint256 freedAmount = 1000000 * _amountExcludingReserve / (1000000 - adjustedReservePPM); // 0.18 * 41 /0.82 = 50
      minterReserveE6 -= freedAmount * _reservePPM; // reduce reserve requirements by original ratio, here 10
      _transfer(address(reserve), msg.sender, freedAmount - _amountExcludingReserve); // collect 9 assigned reserve, maybe less than original reserve
      _burn(msg.sender, freedAmount); // 41
      return freedAmount;
   }

   function burn(address _owner, uint256 _amount) override external minterOnly {
      _burn(_owner, _amount);
   }

   modifier minterOnly() {
      require(isMinter(msg.sender) || isMinter(positions[msg.sender]), "not approved minter");
      _;
   }

   function notifyLoss(uint256 _amount) override external minterOnly {
      uint256 reserveLeft = balanceOf(address(reserve));
      if (reserveLeft >= _amount){
         _transfer(address(reserve), msg.sender, _amount);
      } else {
         _transfer(address(reserve), msg.sender, reserveLeft);
         _mint(msg.sender, _amount - reserveLeft);
      }
   }
   function isMinter(address _minter) override public view returns (bool){
      return minters[_minter] != 0 && block.timestamp >= minters[_minter];
   }

   function isPosition(address _position) override public view returns (address){
      return positions[_position];
   }

}

File 2 of 9 : IFrankencoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IReserve.sol";

interface IFrankencoin is IERC20 {

    function suggestMinter(address _minter, uint256 _applicationPeriod, 
      uint256 _applicationFee, string calldata _message) external;

    function registerPosition(address position) external;

    function denyMinter(address minter, address[] calldata helpers, string calldata message) external;

    function reserve() external view returns (IReserve);

    function isMinter(address minter) external view returns (bool);

    function isPosition(address position) external view returns (address);
    
    function mint(address target, uint256 amount) external;

    function mint(address target, uint256 amount, uint32 reservePPM, uint32 feePPM) external;

    function burn(uint256 amountIncludingReserve, uint32 reservePPM) external;

    function burnFrom(address payer, uint256 targetTotalBurnAmount, uint32 _reservePPM) external returns (uint256);

    function burnWithReserve(uint256 amountExcludingReserve, uint32 reservePPM) external returns (uint256);

    function burn(address target, uint256 amount) external;

    function notifyLoss(uint256 amount) external;

}

File 3 of 9 : IReserve.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IReserve {
   function isQualified(address sender, address[] calldata helpers) external view returns (bool);
}

File 4 of 9 : Equity.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0 <0.9.0;

import "./Frankencoin.sol";
import "./IERC677Receiver.sol";
import "./ERC20PermitLight.sol";
import "./MathUtil.sol";
import "./IReserve.sol";

/** 
 * @title Reserve pool for the Frankencoin
 */
contract Equity is ERC20PermitLight, MathUtil, IReserve {

    uint32 public constant VALUATION_FACTOR = 3;
    uint32 private constant QUORUM = 300;

    uint8 private constant BLOCK_TIME_RESOLUTION_BITS = 24;
    uint256 public constant MIN_HOLDING_DURATION = 90*7200 << BLOCK_TIME_RESOLUTION_BITS; // in blocks, about 90 days, set to 5 blocks for testing

    Frankencoin immutable public zchf;

    // should hopefully be grouped into one storage slot
    uint64 private totalVotesAnchorTime; // 40 Bit for the block number, 24 Bit sub-block time resolution
    uint192 private totalVotesAtAnchor;

    mapping (address => address) public delegates;
    mapping (address => uint64) private voteAnchor; // 40 Bit for the block number, 24 Bit sub-block time resolution

    event Delegation(address indexed from, address indexed to);
    event Trade(address who, int amount, uint totPrice, uint newprice); // amount pos or neg for mint or redemption

    constructor(Frankencoin zchf_) ERC20(18) {
        zchf = zchf_;
    }

    function name() override external pure returns (string memory) {
        return "Frankencoin Pool Share";
    }

    function symbol() override external pure returns (string memory) {
        return "FPS";
    }

    function price() public view returns (uint256){
        return VALUATION_FACTOR * zchf.equity() * ONE_DEC18 / totalSupply();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) override internal {
        super._beforeTokenTransfer(from, to, amount);
        if (amount > 0){
            uint256 roundingLoss = adjustRecipientVoteAnchor(to, amount);
            adjustTotalVotes(from, amount, roundingLoss);
        }
    }

    function canRedeem() external view returns (bool){
        return canRedeem(msg.sender);
    }

    function canRedeem(address owner) public view returns (bool) {
        return anchorTime() - voteAnchor[owner] >= MIN_HOLDING_DURATION;
    }

     /**
     * @notice Decrease the total votes anchor when tokens lose their voting power due to being moved
     * @param from      sender
     * @param amount    amount to be sent
     */
    function adjustTotalVotes(address from, uint256 amount, uint256 roundingLoss) internal {
        uint256 lostVotes = from == address(0x0) ? 0 : (anchorTime() - voteAnchor[from]) * amount;
        totalVotesAtAnchor = uint192(totalVotes() - roundingLoss - lostVotes);
        totalVotesAnchorTime = anchorTime();
    }

    /**
     * @notice the vote anchor of the recipient is moved forward such that the number of calculated
     * votes does not change despite the higher balance.
     * @param to        receiver address
     * @param amount    amount to be received
     * @return the number of votes lost due to rounding errors
     */
    function adjustRecipientVoteAnchor(address to, uint256 amount) internal returns (uint256){
        if (to != address(0x0)) {
            uint256 recipientVotes = votes(to); // for example 21 if 7 shares were held for 3 blocks
            uint256 newbalance = balanceOf(to) + amount; // for example 11 if 4 shares are added
            voteAnchor[to] = uint64(anchorTime() - recipientVotes / newbalance); // new example anchor is only 21 / 11 = 1 block in the past
            return recipientVotes % newbalance; // we have lost 21 % 11 = 10 votes
        } else {
            // optimization for burn, vote anchor of null address does not matter
            return 0;
        }
    }

    function anchorTime() internal view returns (uint64){
        return uint64(block.number << BLOCK_TIME_RESOLUTION_BITS);
    }

    function votes(address holder) public view returns (uint256) {
        return balanceOf(holder) * (anchorTime() - voteAnchor[holder]);
    }

    function totalVotes() public view returns (uint256) {
        return totalVotesAtAnchor + totalSupply() * (anchorTime() - totalVotesAnchorTime);
    }

    function isQualified(address sender, address[] calldata helpers) external override view returns (bool) {
        uint256 _votes = votes(sender);
        for (uint i=0; i<helpers.length; i++){
            address current = helpers[i];
            require(current != sender);
            require(canVoteFor(sender, current));
            for (uint j=i+1; j<helpers.length; j++){
                require(current != helpers[j]); // ensure helper unique
            }
            _votes += votes(current);
        }
        return _votes * 10000 >= QUORUM * totalVotes();
    }

    function delegateVoteTo(address delegate) external {
        delegates[msg.sender] = delegate;
        emit Delegation(msg.sender, delegate);
    }

    function canVoteFor(address delegate, address owner) public view returns (bool) {
        if (owner == delegate){
            return true;
        } else if (owner == address(0x0)){
            return false;
        } else {
            return canVoteFor(delegate, delegates[owner]);
        }
    }

    function onTokenTransfer(address from, uint256 amount, bytes calldata) external returns (bool) {
        require(msg.sender == address(zchf), "caller must be zchf");
        if (totalSupply() == 0){
            require(amount >= ONE_DEC18, "initial deposit must >= 1");
            // initialize with 1000 shares for 1 ZCHF
            uint256 initialAmount = 1000 * ONE_DEC18;
            _mint(from, initialAmount);
            amount -= ONE_DEC18;
            emit Trade(msg.sender, int(initialAmount), ONE_DEC18, price());
        }
        uint256 shares = calculateSharesInternal(zchf.equity() - amount, amount);
        _mint(from, shares);
        require(totalSupply() < 2**90, "total supply exceeded"); // to guard against overflows with price and vote calculations
        emit Trade(msg.sender, int(shares), amount, price());
        return true;
    }

    /**
     * @notice Calculate shares received when depositing ZCHF
     * @dev this function is called after the transfer of ZCHF happens
     * @param investment ZCHF invested, in dec18 format
     * @return amount of shares received for the ZCHF invested
     */
    function calculateShares(uint256 investment) public view returns (uint256) {
        return calculateSharesInternal(zchf.equity(), investment);
    }

    function calculateSharesInternal(uint256 capitalBefore, uint256 investment) internal view returns (uint256) {
        uint256 totalShares = totalSupply();
        uint256 newTotalShares = _mulD18(totalShares, _cubicRoot(_divD18(capitalBefore + investment, capitalBefore)));
        return newTotalShares - totalShares;
    }

    function redeem(address target, uint256 shares) public returns (uint256) {
        require(canRedeem(msg.sender));
        uint256 proceeds = calculateProceeds(shares);
        _burn(msg.sender, shares);
        zchf.transfer(target, proceeds);
        emit Trade(msg.sender, -int(shares), proceeds, price());
        return proceeds;
    }

    /**
     * @notice Calculate ZCHF received when depositing shares
     * @dev this function is called before any transfer happens
     * @param shares number of shares we want to exchange for ZCHF,
     *               in dec18 format
     * @return amount of ZCHF received for the shares
     */
    function calculateProceeds(uint256 shares) public view returns (uint256) {
        uint256 totalShares = totalSupply();
        uint256 capital = zchf.equity();
        require(shares + ONE_DEC18 < totalShares, "too many shares"); // make sure there is always at least one share
        uint256 newTotalShares = totalShares - shares;
        uint256 newCapital = _mulD18(capital, _power3(_divD18(newTotalShares, totalShares)));
        return capital - newCapital;
    }

}

File 5 of 9 : ERC20PermitLight.sol
// SPDX-License-Identifier: MIT
// Copied from https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol
// and modified it.

pragma solidity ^0.8.0;

import "./ERC20.sol";

abstract contract ERC20PermitLight is ERC20 {
   
   /*//////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(address => uint256) public nonces;

  /*//////////////////////////////////////////////////////////////
                             EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public {
        require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

        unchecked { // unchecked to save a little gas with the nonce increment...
            address recoveredAddress = ecrecover(
                keccak256(
                    abi.encodePacked(
                        "\x19\x01",
                        DOMAIN_SEPARATOR(),
                        keccak256(
                            abi.encode(
                                // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"),
                                bytes32(0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9),
                                owner,
                                spender,
                                value,
                                nonces[owner]++,
                                deadline
                            )
                        )
                    )
                ),
                v,
                r,
                s
            );

            require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");
            _approve(recoveredAddress, spender, value);
        }
    }

    function DOMAIN_SEPARATOR() public view returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    //keccak256("EIP712Domain(uint256 chainId,address verifyingContract)");
                    bytes32(0x47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a79469218),
                    block.chainid,
                    address(this)
                )
            );
    }

}

File 6 of 9 : IERC20.sol
/**
* SPDX-License-Identifier: MIT
*
* Copyright (c) 2016-2019 zOS Global Limited
*
*/
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */

interface IERC20 {

    // Optional functions
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);

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

    function transferAndCall(address recipient, uint256 amount, bytes calldata data) 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.
     *
     * > 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);

}

File 7 of 9 : MathUtil.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0 <0.9.0;

/** 
 * @title Functions for share valuation
 */
contract MathUtil {

    uint256 internal constant ONE_DEC18 = 10**18;
    uint256 internal constant THRESH_DEC18 =  10000000000000000;//0.01
    /**
     * @notice Cubic root with Halley approximation
     *         Number 1e18 decimal
     * @param _v     number for which we calculate x**(1/3)
     * @return returns _v**(1/3)
     */
    function _cubicRoot(uint256 _v) internal pure returns (uint256) {
        uint256 x = ONE_DEC18;
        uint256 xOld;
        bool cond;
        do {
            xOld = x;
            uint256 powX3 = _mulD18(_mulD18(x, x), x);
            x = _mulD18(x, _divD18( (powX3 + 2 * _v) , (2 * powX3 + _v)));
            cond = xOld > x ? xOld - x > THRESH_DEC18 : x - xOld > THRESH_DEC18;
        } while ( cond );
        return x;
    }

    function _mulD18(uint256 _a, uint256 _b) internal pure returns(uint256) {
        return _a * _b / ONE_DEC18;
    }

    function _divD18(uint256 _a, uint256 _b) internal pure returns(uint256) {
        return (_a * ONE_DEC18) / _b ;
    }

    function _power3(uint256 _x) internal pure returns(uint256) {
        return _mulD18(_mulD18(_x, _x), _x);
    }

}

File 8 of 9 : IERC677Receiver.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IERC677Receiver {
    
    function onTokenTransfer(address from, uint256 amount, bytes calldata data) external returns (bool);

}

File 9 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// Copied and adjusted from OpenZeppelin
// Adjustments:
// - modifications to support ERC-677
// - removed require messages to save space
// - removed unnecessary require statements
// - removed GSN Context
// - upgraded to 0.8 to drop SafeMath
// - let name() and symbol() be implemented by subclass
// - infinite allowance support, with 2^255 and above considered infinite

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC677Receiver.sol";

/**
 * @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 `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an `Approval` event is emitted on calls to `transferFrom`.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See `IERC20.approve`.
 */

abstract contract ERC20 is IERC20 {

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    uint8 public immutable override decimals;

    constructor(uint8 _decimals) {
        decimals = _decimals;
    }

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

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

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

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

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) external override returns (bool) {
        _approve(msg.sender, spender, value);
        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 `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][msg.sender];
        if (currentAllowance < (1 << 255)){
            // Only decrease the allowance if it was not set to 'infinite'
            // Documented in /doc/infiniteallowance.md
            require(currentAllowance >= amount, "approval not enough");
            _approve(sender, msg.sender, currentAllowance - amount);
        }
        return true;
    }

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

    // ERC-677 functionality, can be useful for swapping and wrapping tokens
    function transferAndCall(address recipient, uint256 amount, bytes calldata data) external override returns (bool) {
        bool success = transfer(recipient, amount);
        if (success){
            success = IERC677Receiver(recipient).onTokenTransfer(msg.sender, amount, data);
        }
        return success;
    }

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

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

        _totalSupply += amount;
        _balances[recipient] += amount;
        emit Transfer(address(0), recipient, 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 {
        _beforeTokenTransfer(account, address(0), amount);

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract Frankencoin","name":"zchf_","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Delegation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"int256","name":"amount","type":"int256"},{"indexed":false,"internalType":"uint256","name":"totPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newprice","type":"uint256"}],"name":"Trade","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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_HOLDING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VALUATION_FACTOR","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"calculateProceeds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"investment","type":"uint256"}],"name":"calculateShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"canRedeem","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canRedeem","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegate","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"canVoteFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegate","type":"address"}],"name":"delegateVoteTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address[]","name":"helpers","type":"address[]"}],"name":"isQualified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onTokenTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalVotes","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","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":"holder","type":"address"}],"name":"votes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zchf","outputs":[{"internalType":"contract Frankencoin","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c060405234801561001057600080fd5b50604051611c6a380380611c6a83398101604081905261002f91610045565b60126080526001600160a01b031660a052610075565b60006020828403121561005757600080fd5b81516001600160a01b038116811461006e57600080fd5b9392505050565b60805160a051611ba66100c46000396000818161044d015281816105e00152818161080e01528181610ad001528181610b7c01528181610ccd0152610e2b015260006102b40152611ba66000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635e1121cf11610104578063a9059cbb116100a2578063d505accf11610071578063d505accf1461046f578063d8bff5a514610482578063dd62ed3e14610495578063f97ed509146104ce57600080fd5b8063a9059cbb14610415578063ad08ce5b14610428578063b0c2bf061461043b578063c4d4803a1461044857600080fd5b806395d89b41116100de57806395d89b41146103c65780639823004f146103e5578063a035b1fe146103fa578063a4c0ed361461040257600080fd5b80635e1121cf1461036a57806370a082311461037d5780637ecebe00146103a657600080fd5b8063250f25f4116101715780633c835ab01161014b5780633c835ab0146102f05780633ec16194146103035780634000aea014610316578063587cde1e1461032957600080fd5b8063250f25f414610292578063313ce567146102af5780633644e515146102e857600080fd5b8063151535b9116101ad578063151535b91461025157806318160ddd146102645780631e9a69501461026c57806323b872dd1461027f57600080fd5b806306fdde03146101d4578063095ea7b3146102185780630d15fd771461023b575b600080fd5b6040805180820190915260168152754672616e6b656e636f696e20506f6f6c20536861726560501b60208201525b60405161020f919061170f565b60405180910390f35b61022b610226366004611779565b6104d6565b604051901515815260200161020f565b6102436104ed565b60405190815260200161020f565b61022b61025f3660046117a3565b610547565b600254610243565b61024361027a366004611779565b61058f565b61022b61028d3660046117be565b6106a1565b61029a600381565b60405163ffffffff909116815260200161020f565b6102d67f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161020f565b610243610748565b61022b6102fe3660046117fa565b6107a1565b61024361031136600461182d565b610807565b61022b610324366004611846565b610894565b6103526103373660046117a3565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161020f565b61022b6103783660046118cc565b61092a565b61024361038b3660046117a3565b6001600160a01b031660009081526020819052604090205490565b6102436103b43660046117a3565b60036020526000908152604090205481565b60408051808201909152600381526246505360e81b6020820152610202565b6103f86103f33660046117a3565b610a63565b005b610243610aba565b61022b610410366004611846565b610b6f565b61022b610423366004611779565b610e0c565b61024361043636600461182d565b610e19565b6102436509e34000000081565b6103527f000000000000000000000000000000000000000000000000000000000000000081565b6103f861047d366004611951565b610f40565b6102436104903660046117a3565b611130565b6102436104a33660046117fa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61022b611191565b60006104e333848461119c565b5060015b92915050565b600454600090610509906001600160401b03164360181b6119da565b6001600160401b031661051b60025490565b6105259190611a01565b6004546105429190600160401b90046001600160c01b0316611a18565b905090565b6001600160a01b0381166000908152600660205260408120546509e3400000009061057e906001600160401b03164360181b6119da565b6001600160401b0316101592915050565b600061059a33610547565b6105a357600080fd5b60006105ae83610e19565b90506105ba33846111fe565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390527f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb906044016020604051808303816000875af1158015610629573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064d9190611a2b565b507fd98fb7c2b7c7b545387da80b92c08bc5d2a4b922fb74851c3d27ee07ca897bdf3361067985611a4d565b83610682610aba565b6040516106929493929190611a69565b60405180910390a19392505050565b60006106ae848484611294565b6001600160a01b0384166000908152600160209081526040808320338452909152902054600160ff1b81101561073d57828110156107295760405162461bcd60e51b81526020600482015260136024820152720c2e0e0e4deecc2d840dcdee840cadcdeeaced606b1b60448201526064015b60405180910390fd5b61073d85336107388685611a8f565b61119c565b506001949350505050565b604080517f47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a794692186020820152469181019190915230606082015260009060800160405160208183030381529060405280519060200120905090565b6000826001600160a01b0316826001600160a01b0316036107c4575060016104e7565b6001600160a01b0382166107da575060006104e7565b6001600160a01b03808316600090815260056020526040902054610800918591166107a1565b90506104e7565b60006104e77f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166391a0ac6a6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561086a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088e9190611aa2565b836113b0565b6000806108a18686610e0c565b9050801561092157604051635260769b60e11b81526001600160a01b0387169063a4c0ed36906108db903390899089908990600401611abb565b6020604051808303816000875af11580156108fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091e9190611a2b565b90505b95945050505050565b60008061093685611130565b905060005b83811015610a3757600085858381811061095757610957611b03565b905060200201602081019061096c91906117a3565b9050866001600160a01b0316816001600160a01b03160361098c57600080fd5b61099687826107a1565b61099f57600080fd5b60006109ac836001611a18565b90505b85811015610a0d578686828181106109c9576109c9611b03565b90506020020160208101906109de91906117a3565b6001600160a01b0316826001600160a01b0316036109fb57600080fd5b80610a0581611b19565b9150506109af565b50610a1781611130565b610a219084611a18565b9250508080610a2f90611b19565b91505061093b565b50610a406104ed565b610a4c9061012c611a01565b610a5882612710611a01565b101595945050505050565b3360008181526005602052604080822080546001600160a01b0319166001600160a01b03861690811790915590519092917fd000f39f92c3ed77f890f16b6ced1555e0ab2cdf470522d2210de67d8c83d45b91a350565b6000610ac560025490565b670de0b6b3a76400007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166391a0ac6a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b509190611aa2565b610b5b906003611a01565b610b659190611a01565b6105429190611b48565b6000336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610bdf5760405162461bcd60e51b815260206004820152601360248201527231b0b63632b91036bab9ba103132903d31b43360691b6044820152606401610720565b600254600003610cc557670de0b6b3a7640000841015610c415760405162461bcd60e51b815260206004820152601960248201527f696e697469616c206465706f736974206d757374203e3d2031000000000000006044820152606401610720565b6000610c57670de0b6b3a76400006103e8611a01565b9050610c6386826113eb565b610c75670de0b6b3a764000086611a8f565b94507fd98fb7c2b7c7b545387da80b92c08bc5d2a4b922fb74851c3d27ee07ca897bdf3382670de0b6b3a7640000610cab610aba565b604051610cbb9493929190611a69565b60405180910390a1505b6000610d5d857f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166391a0ac6a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4d9190611aa2565b610d579190611a8f565b866113b0565b9050610d6986826113eb565b6001605a1b610d7760025490565b10610dbc5760405162461bcd60e51b81526020600482015260156024820152741d1bdd185b081cdd5c1c1b1e48195e18d959591959605a1b6044820152606401610720565b7fd98fb7c2b7c7b545387da80b92c08bc5d2a4b922fb74851c3d27ee07ca897bdf338287610de8610aba565b604051610df89493929190611a69565b60405180910390a150600195945050505050565b60006104e3338484611294565b600080610e2560025490565b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166391a0ac6a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eab9190611aa2565b905081610ec0670de0b6b3a764000086611a18565b10610eff5760405162461bcd60e51b815260206004820152600f60248201526e746f6f206d616e792073686172657360881b6044820152606401610720565b6000610f0b8584611a8f565b90506000610f2a83610f25610f20858861148c565b6114b2565b6114c3565b9050610f368184611a8f565b9695505050505050565b42841015610f905760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152606401610720565b60006001610f9c610748565b6001600160a01b038a811660008181526003602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156110a8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906110de5750876001600160a01b0316816001600160a01b0316145b61111b5760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b6044820152606401610720565b61112681888861119c565b5050505050505050565b6001600160a01b03811660009081526006602052604081205461115f906001600160401b03164360181b6119da565b6001600160401b0316611187836001600160a01b031660009081526020819052604090205490565b6104e79190611a01565b600061054233610547565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61120a826000836114d8565b806002600082825461121c9190611a8f565b90915550506001600160a01b03821660009081526020819052604081208054839290611249908490611a8f565b90915550506040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001600160a01b0382166112a757600080fd5b6112b28383836114d8565b6001600160a01b03831660009081526020819052604090205481111561130f5760405162461bcd60e51b81526020600482015260126024820152710c4c2d8c2dcc6ca40dcdee840cadcdeeaced60731b6044820152606401610720565b6001600160a01b03831660009081526020819052604081208054839290611337908490611a8f565b90915550506001600160a01b03821660009081526020819052604081208054839290611364908490611a18565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111f191815260200190565b6000806113bc60025490565b905060006113df82610f256113da6113d4888a611a18565b8961148c565b6114fe565b90506109218282611a8f565b6001600160a01b0382166113fe57600080fd5b61140a600083836114d8565b806002600082825461141c9190611a18565b90915550506001600160a01b03821660009081526020819052604081208054839290611449908490611a18565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611288565b6000816114a1670de0b6b3a764000085611a01565b6114ab9190611b48565b9392505050565b60006104e76114c183846114c3565b835b6000670de0b6b3a76400006114a18385611a01565b80156114f95760006114ea83836115a3565b90506114f7848383611661565b505b505050565b6000670de0b6b3a764000081805b829150600061152461151e85866114c3565b856114c3565b905061155d84610f25611538896002611a01565b6115429085611a18565b8961154e866002611a01565b6115589190611a18565b61148c565b935083831161157e57662386f26fc100006115788486611a8f565b11611592565b662386f26fc100006115908585611a8f565b115b9150508061150c5750909392505050565b60006001600160a01b038316156116595760006115bf84611130565b90506000836115e3866001600160a01b031660009081526020819052604090205490565b6115ed9190611a18565b90506115f98183611b48565b61160f906001600160401b034360181b16611a8f565b6001600160a01b0386166000908152600660205260409020805467ffffffffffffffff19166001600160401b03929092169190911790556116508183611b5c565b925050506104e7565b5060006104e7565b60006001600160a01b038416156116bb576001600160a01b03841660009081526006602052604090205483906116a3906001600160401b03164360181b6119da565b6001600160401b03166116b69190611a01565b6116be565b60005b905080826116ca6104ed565b6116d49190611a8f565b6116de9190611a8f565b6001600160c01b0316600160401b0267ffffffffffffffff19166001600160401b034360181b161760045550505050565b600060208083528351808285015260005b8181101561173c57858101830151858201604001528201611720565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461177457600080fd5b919050565b6000806040838503121561178c57600080fd5b6117958361175d565b946020939093013593505050565b6000602082840312156117b557600080fd5b6114ab8261175d565b6000806000606084860312156117d357600080fd5b6117dc8461175d565b92506117ea6020850161175d565b9150604084013590509250925092565b6000806040838503121561180d57600080fd5b6118168361175d565b91506118246020840161175d565b90509250929050565b60006020828403121561183f57600080fd5b5035919050565b6000806000806060858703121561185c57600080fd5b6118658561175d565b93506020850135925060408501356001600160401b038082111561188857600080fd5b818701915087601f83011261189c57600080fd5b8135818111156118ab57600080fd5b8860208285010111156118bd57600080fd5b95989497505060200194505050565b6000806000604084860312156118e157600080fd5b6118ea8461175d565b925060208401356001600160401b038082111561190657600080fd5b818601915086601f83011261191a57600080fd5b81358181111561192957600080fd5b8760208260051b850101111561193e57600080fd5b6020830194508093505050509250925092565b600080600080600080600060e0888a03121561196c57600080fd5b6119758861175d565b96506119836020890161175d565b95506040880135945060608801359350608088013560ff811681146119a757600080fd5b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b600052601160045260246000fd5b6001600160401b038281168282160390808211156119fa576119fa6119c4565b5092915050565b80820281158282048414176104e7576104e76119c4565b808201808211156104e7576104e76119c4565b600060208284031215611a3d57600080fd5b815180151581146114ab57600080fd5b6000600160ff1b8201611a6257611a626119c4565b5060000390565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b818103818111156104e7576104e76119c4565b600060208284031215611ab457600080fd5b5051919050565b6001600160a01b0385168152602081018490526060604082018190528101829052818360808301376000818301608090810191909152601f909201601f191601019392505050565b634e487b7160e01b600052603260045260246000fd5b600060018201611b2b57611b2b6119c4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b5757611b57611b32565b500490565b600082611b6b57611b6b611b32565b50069056fea2646970667358221220ac01cdbbe9aeaf35c054f9e1df101fbe5af5df88be31ffa4a1560cd3a2361e7864736f6c63430008130033000000000000000000000000422d17ccc1442501d039595ffcaaa71b4686bf4e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635e1121cf11610104578063a9059cbb116100a2578063d505accf11610071578063d505accf1461046f578063d8bff5a514610482578063dd62ed3e14610495578063f97ed509146104ce57600080fd5b8063a9059cbb14610415578063ad08ce5b14610428578063b0c2bf061461043b578063c4d4803a1461044857600080fd5b806395d89b41116100de57806395d89b41146103c65780639823004f146103e5578063a035b1fe146103fa578063a4c0ed361461040257600080fd5b80635e1121cf1461036a57806370a082311461037d5780637ecebe00146103a657600080fd5b8063250f25f4116101715780633c835ab01161014b5780633c835ab0146102f05780633ec16194146103035780634000aea014610316578063587cde1e1461032957600080fd5b8063250f25f414610292578063313ce567146102af5780633644e515146102e857600080fd5b8063151535b9116101ad578063151535b91461025157806318160ddd146102645780631e9a69501461026c57806323b872dd1461027f57600080fd5b806306fdde03146101d4578063095ea7b3146102185780630d15fd771461023b575b600080fd5b6040805180820190915260168152754672616e6b656e636f696e20506f6f6c20536861726560501b60208201525b60405161020f919061170f565b60405180910390f35b61022b610226366004611779565b6104d6565b604051901515815260200161020f565b6102436104ed565b60405190815260200161020f565b61022b61025f3660046117a3565b610547565b600254610243565b61024361027a366004611779565b61058f565b61022b61028d3660046117be565b6106a1565b61029a600381565b60405163ffffffff909116815260200161020f565b6102d67f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff909116815260200161020f565b610243610748565b61022b6102fe3660046117fa565b6107a1565b61024361031136600461182d565b610807565b61022b610324366004611846565b610894565b6103526103373660046117a3565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161020f565b61022b6103783660046118cc565b61092a565b61024361038b3660046117a3565b6001600160a01b031660009081526020819052604090205490565b6102436103b43660046117a3565b60036020526000908152604090205481565b60408051808201909152600381526246505360e81b6020820152610202565b6103f86103f33660046117a3565b610a63565b005b610243610aba565b61022b610410366004611846565b610b6f565b61022b610423366004611779565b610e0c565b61024361043636600461182d565b610e19565b6102436509e34000000081565b6103527f000000000000000000000000422d17ccc1442501d039595ffcaaa71b4686bf4e81565b6103f861047d366004611951565b610f40565b6102436104903660046117a3565b611130565b6102436104a33660046117fa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61022b611191565b60006104e333848461119c565b5060015b92915050565b600454600090610509906001600160401b03164360181b6119da565b6001600160401b031661051b60025490565b6105259190611a01565b6004546105429190600160401b90046001600160c01b0316611a18565b905090565b6001600160a01b0381166000908152600660205260408120546509e3400000009061057e906001600160401b03164360181b6119da565b6001600160401b0316101592915050565b600061059a33610547565b6105a357600080fd5b60006105ae83610e19565b90506105ba33846111fe565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390527f000000000000000000000000422d17ccc1442501d039595ffcaaa71b4686bf4e169063a9059cbb906044016020604051808303816000875af1158015610629573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064d9190611a2b565b507fd98fb7c2b7c7b545387da80b92c08bc5d2a4b922fb74851c3d27ee07ca897bdf3361067985611a4d565b83610682610aba565b6040516106929493929190611a69565b60405180910390a19392505050565b60006106ae848484611294565b6001600160a01b0384166000908152600160209081526040808320338452909152902054600160ff1b81101561073d57828110156107295760405162461bcd60e51b81526020600482015260136024820152720c2e0e0e4deecc2d840dcdee840cadcdeeaced606b1b60448201526064015b60405180910390fd5b61073d85336107388685611a8f565b61119c565b506001949350505050565b604080517f47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a794692186020820152469181019190915230606082015260009060800160405160208183030381529060405280519060200120905090565b6000826001600160a01b0316826001600160a01b0316036107c4575060016104e7565b6001600160a01b0382166107da575060006104e7565b6001600160a01b03808316600090815260056020526040902054610800918591166107a1565b90506104e7565b60006104e77f000000000000000000000000422d17ccc1442501d039595ffcaaa71b4686bf4e6001600160a01b03166391a0ac6a6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561086a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088e9190611aa2565b836113b0565b6000806108a18686610e0c565b9050801561092157604051635260769b60e11b81526001600160a01b0387169063a4c0ed36906108db903390899089908990600401611abb565b6020604051808303816000875af11580156108fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091e9190611a2b565b90505b95945050505050565b60008061093685611130565b905060005b83811015610a3757600085858381811061095757610957611b03565b905060200201602081019061096c91906117a3565b9050866001600160a01b0316816001600160a01b03160361098c57600080fd5b61099687826107a1565b61099f57600080fd5b60006109ac836001611a18565b90505b85811015610a0d578686828181106109c9576109c9611b03565b90506020020160208101906109de91906117a3565b6001600160a01b0316826001600160a01b0316036109fb57600080fd5b80610a0581611b19565b9150506109af565b50610a1781611130565b610a219084611a18565b9250508080610a2f90611b19565b91505061093b565b50610a406104ed565b610a4c9061012c611a01565b610a5882612710611a01565b101595945050505050565b3360008181526005602052604080822080546001600160a01b0319166001600160a01b03861690811790915590519092917fd000f39f92c3ed77f890f16b6ced1555e0ab2cdf470522d2210de67d8c83d45b91a350565b6000610ac560025490565b670de0b6b3a76400007f000000000000000000000000422d17ccc1442501d039595ffcaaa71b4686bf4e6001600160a01b03166391a0ac6a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b509190611aa2565b610b5b906003611a01565b610b659190611a01565b6105429190611b48565b6000336001600160a01b037f000000000000000000000000422d17ccc1442501d039595ffcaaa71b4686bf4e1614610bdf5760405162461bcd60e51b815260206004820152601360248201527231b0b63632b91036bab9ba103132903d31b43360691b6044820152606401610720565b600254600003610cc557670de0b6b3a7640000841015610c415760405162461bcd60e51b815260206004820152601960248201527f696e697469616c206465706f736974206d757374203e3d2031000000000000006044820152606401610720565b6000610c57670de0b6b3a76400006103e8611a01565b9050610c6386826113eb565b610c75670de0b6b3a764000086611a8f565b94507fd98fb7c2b7c7b545387da80b92c08bc5d2a4b922fb74851c3d27ee07ca897bdf3382670de0b6b3a7640000610cab610aba565b604051610cbb9493929190611a69565b60405180910390a1505b6000610d5d857f000000000000000000000000422d17ccc1442501d039595ffcaaa71b4686bf4e6001600160a01b03166391a0ac6a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4d9190611aa2565b610d579190611a8f565b866113b0565b9050610d6986826113eb565b6001605a1b610d7760025490565b10610dbc5760405162461bcd60e51b81526020600482015260156024820152741d1bdd185b081cdd5c1c1b1e48195e18d959591959605a1b6044820152606401610720565b7fd98fb7c2b7c7b545387da80b92c08bc5d2a4b922fb74851c3d27ee07ca897bdf338287610de8610aba565b604051610df89493929190611a69565b60405180910390a150600195945050505050565b60006104e3338484611294565b600080610e2560025490565b905060007f000000000000000000000000422d17ccc1442501d039595ffcaaa71b4686bf4e6001600160a01b03166391a0ac6a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eab9190611aa2565b905081610ec0670de0b6b3a764000086611a18565b10610eff5760405162461bcd60e51b815260206004820152600f60248201526e746f6f206d616e792073686172657360881b6044820152606401610720565b6000610f0b8584611a8f565b90506000610f2a83610f25610f20858861148c565b6114b2565b6114c3565b9050610f368184611a8f565b9695505050505050565b42841015610f905760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152606401610720565b60006001610f9c610748565b6001600160a01b038a811660008181526003602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156110a8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906110de5750876001600160a01b0316816001600160a01b0316145b61111b5760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b6044820152606401610720565b61112681888861119c565b5050505050505050565b6001600160a01b03811660009081526006602052604081205461115f906001600160401b03164360181b6119da565b6001600160401b0316611187836001600160a01b031660009081526020819052604090205490565b6104e79190611a01565b600061054233610547565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61120a826000836114d8565b806002600082825461121c9190611a8f565b90915550506001600160a01b03821660009081526020819052604081208054839290611249908490611a8f565b90915550506040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001600160a01b0382166112a757600080fd5b6112b28383836114d8565b6001600160a01b03831660009081526020819052604090205481111561130f5760405162461bcd60e51b81526020600482015260126024820152710c4c2d8c2dcc6ca40dcdee840cadcdeeaced60731b6044820152606401610720565b6001600160a01b03831660009081526020819052604081208054839290611337908490611a8f565b90915550506001600160a01b03821660009081526020819052604081208054839290611364908490611a18565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111f191815260200190565b6000806113bc60025490565b905060006113df82610f256113da6113d4888a611a18565b8961148c565b6114fe565b90506109218282611a8f565b6001600160a01b0382166113fe57600080fd5b61140a600083836114d8565b806002600082825461141c9190611a18565b90915550506001600160a01b03821660009081526020819052604081208054839290611449908490611a18565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611288565b6000816114a1670de0b6b3a764000085611a01565b6114ab9190611b48565b9392505050565b60006104e76114c183846114c3565b835b6000670de0b6b3a76400006114a18385611a01565b80156114f95760006114ea83836115a3565b90506114f7848383611661565b505b505050565b6000670de0b6b3a764000081805b829150600061152461151e85866114c3565b856114c3565b905061155d84610f25611538896002611a01565b6115429085611a18565b8961154e866002611a01565b6115589190611a18565b61148c565b935083831161157e57662386f26fc100006115788486611a8f565b11611592565b662386f26fc100006115908585611a8f565b115b9150508061150c5750909392505050565b60006001600160a01b038316156116595760006115bf84611130565b90506000836115e3866001600160a01b031660009081526020819052604090205490565b6115ed9190611a18565b90506115f98183611b48565b61160f906001600160401b034360181b16611a8f565b6001600160a01b0386166000908152600660205260409020805467ffffffffffffffff19166001600160401b03929092169190911790556116508183611b5c565b925050506104e7565b5060006104e7565b60006001600160a01b038416156116bb576001600160a01b03841660009081526006602052604090205483906116a3906001600160401b03164360181b6119da565b6001600160401b03166116b69190611a01565b6116be565b60005b905080826116ca6104ed565b6116d49190611a8f565b6116de9190611a8f565b6001600160c01b0316600160401b0267ffffffffffffffff19166001600160401b034360181b161760045550505050565b600060208083528351808285015260005b8181101561173c57858101830151858201604001528201611720565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461177457600080fd5b919050565b6000806040838503121561178c57600080fd5b6117958361175d565b946020939093013593505050565b6000602082840312156117b557600080fd5b6114ab8261175d565b6000806000606084860312156117d357600080fd5b6117dc8461175d565b92506117ea6020850161175d565b9150604084013590509250925092565b6000806040838503121561180d57600080fd5b6118168361175d565b91506118246020840161175d565b90509250929050565b60006020828403121561183f57600080fd5b5035919050565b6000806000806060858703121561185c57600080fd5b6118658561175d565b93506020850135925060408501356001600160401b038082111561188857600080fd5b818701915087601f83011261189c57600080fd5b8135818111156118ab57600080fd5b8860208285010111156118bd57600080fd5b95989497505060200194505050565b6000806000604084860312156118e157600080fd5b6118ea8461175d565b925060208401356001600160401b038082111561190657600080fd5b818601915086601f83011261191a57600080fd5b81358181111561192957600080fd5b8760208260051b850101111561193e57600080fd5b6020830194508093505050509250925092565b600080600080600080600060e0888a03121561196c57600080fd5b6119758861175d565b96506119836020890161175d565b95506040880135945060608801359350608088013560ff811681146119a757600080fd5b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b600052601160045260246000fd5b6001600160401b038281168282160390808211156119fa576119fa6119c4565b5092915050565b80820281158282048414176104e7576104e76119c4565b808201808211156104e7576104e76119c4565b600060208284031215611a3d57600080fd5b815180151581146114ab57600080fd5b6000600160ff1b8201611a6257611a626119c4565b5060000390565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b818103818111156104e7576104e76119c4565b600060208284031215611ab457600080fd5b5051919050565b6001600160a01b0385168152602081018490526060604082018190528101829052818360808301376000818301608090810191909152601f909201601f191601019392505050565b634e487b7160e01b600052603260045260246000fd5b600060018201611b2b57611b2b6119c4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b5757611b57611b32565b500490565b600082611b6b57611b6b611b32565b50069056fea2646970667358221220ac01cdbbe9aeaf35c054f9e1df101fbe5af5df88be31ffa4a1560cd3a2361e7864736f6c63430008130033

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

000000000000000000000000422d17ccc1442501d039595ffcaaa71b4686bf4e

-----Decoded View---------------
Arg [0] : zchf_ (address): 0x422d17ccC1442501D039595ffcaAa71b4686Bf4E

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000422d17ccc1442501d039595ffcaaa71b4686bf4e


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.