ETH Price: $3,160.41 (+1.41%)
Gas: 2 Gwei

Token

Coinspaid (CPD)
 

Overview

Max Total Supply

800,000,000 CPD

Holders

498

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
50,073.024192811857457628 CPD

Value
$0.00
0xBac33C7c89692846504Cc20D3721B8b5e1f478b0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CoinsPaid is the world's largest crypto payment ecosystem, comprising a crypto gateway, personal and enterprise wallets, an OTC desk, Whitelabel SaaS solutions, and more.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CPD

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 2 : CPD.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

import "./SafeMath.sol";

contract CPD {
    /// @notice EIP-20 token name for this token
    string public constant name = "Coinspaid";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "CPD";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint256 public constant totalSupply = 800_000_000e18; // 800 million CPD

    /// @dev Allowance amounts on behalf of others
    mapping (address => mapping (address => uint96)) internal allowances;

    /// @dev Official record of token balances for each account
    mapping (address => uint96) internal balances;

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

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

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

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

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

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

    /// @notice The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

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

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

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

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /**
     * @notice Construct a new CPD token
     * @param account The initial account to grant all the tokens
     */
    constructor(address account) public {
        balances[account] = uint96(totalSupply);
        emit Transfer(address(0), account, totalSupply);
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint256) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 rawAmount) external returns (bool) {
        uint96 amount;
        if (rawAmount == uint256(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "CPD::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function permit(address owner, address spender, uint256 rawAmount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external {
        uint96 amount;
        if (rawAmount == uint256(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "CPD::permit: amount exceeds 96 bits");
        }

        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "CPD::permit: invalid signature");
        require(signatory == owner, "CPD::permit: unauthorized");
        require(now <= deadline, "CPD::permit: signature expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint256) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint256 rawAmount) external returns (bool) {
        uint96 amount = safe96(rawAmount, "CPD::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint256 rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint96 spenderAllowance = allowances[src][spender];
        uint96 amount = safe96(rawAmount, "CPD::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "CPD::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

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

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

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

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

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

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

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

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

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(address src, address dst, uint96 amount) internal {
        require(src != address(0), "CPD::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "CPD::_transferTokens: cannot transfer to the zero address");

        balances[src] = sub96(balances[src], amount, "CPD::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "CPD::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

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

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

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

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

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

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

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

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

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

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

File 2 of 2 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    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 multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b, string memory errorMessage) 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, errorMessage);

        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) {
        // Solidity only automatically asserts when dividing by 0
        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;
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"account","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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"rawAmount","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":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5060405162001d7838038062001d78833981016040819052610031916100a4565b6001600160a01b03811660008181526001602052604080822080546001600160601b0319166b0295be96e64066972000000090811790915590517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91610096916100d2565b60405180910390a3506100db565b6000602082840312156100b5578081fd5b81516001600160a01b03811681146100cb578182fd5b9392505050565b90815260200190565b611c8d80620000eb6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063b4b5ea571161007c578063b4b5ea571461027d578063c3cda52014610290578063d505accf146102a3578063dd62ed3e146102b6578063e7a324dc146102c9578063f1127ed8146102d157610137565b806370a082311461021c578063782d6fe11461022f5780637ecebe001461024f57806395d89b4114610262578063a9059cbb1461026a57610137565b806330adf81f116100ff57806330adf81f146101aa578063313ce567146101b2578063587cde1e146101c75780635c19a95c146101e75780636fcfff45146101fc57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017a57806320606b701461018f57806323b872dd14610197575b600080fd5b6101446102f2565b6040516101519190611787565b60405180910390f35b61016d6101683660046115e8565b610317565b60405161015191906116d9565b6101826103d4565b60405161015191906116e4565b6101826103e4565b61016d6101a536600461153c565b610408565b61018261054b565b6101ba61056f565b6040516101519190611a7a565b6101da6101d53660046114ed565b610574565b60405161015191906116c5565b6101fa6101f53660046114ed565b61058f565b005b61020f61020a3660046114ed565b61059c565b6040516101519190611a4a565b61018261022a3660046114ed565b6105b4565b61024261023d3660046115e8565b6105d8565b6040516101519190611a88565b61018261025d3660046114ed565b6107ef565b610144610801565b61016d6102783660046115e8565b610820565b61024261028b3660046114ed565b61085c565b6101fa61029e366004611612565b6108cd565b6101fa6102b136600461157c565b610ad4565b6101826102c4366004611508565b610dd6565b610182610e08565b6102e46102df36600461166b565b610e2c565b604051610151929190611a5b565b6040518060400160405280600981526020016810dbda5b9cdc185a5960ba1b81525081565b60008060001983141561032d5750600019610352565b61034f83604051806060016040528060248152602001611b2660249139610e61565b90505b336000818152602081815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103c0908590611a88565b60405180910390a360019150505b92915050565b6b0295be96e64066972000000081565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b0383166000908152602081815260408083203380855290835281842054825160608101909352602480845291936001600160601b0390911692859261045e9288929190611b2690830139610e61565b9050866001600160a01b0316836001600160a01b03161415801561048b57506001600160601b0382811614155b156105335760006104b583836040518060600160405280603c8152602001611c1c603c9139610e90565b6001600160a01b03898116600081815260208181526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610529908590611a88565b60405180910390a3505b61053e878783610ecf565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b6002602052600090815260409020546001600160a01b031681565b610599338261107a565b50565b60046020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600160205260409020546001600160601b031690565b60004382106106025760405162461bcd60e51b81526004016105f9906119c3565b60405180910390fd5b6001600160a01b03831660009081526004602052604090205463ffffffff16806106305760009150506103ce565b6001600160a01b038416600090815260036020908152604080832063ffffffff6000198601811685529252909120541683106106ac576001600160a01b03841660009081526003602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b031690506103ce565b6001600160a01b038416600090815260036020908152604080832083805290915290205463ffffffff168310156106e75760009150506103ce565b600060001982015b8163ffffffff168163ffffffff1611156107aa57600282820363ffffffff160481036107196114ae565b506001600160a01b038716600090815260036020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610785576020015194506103ce9350505050565b805163ffffffff1687111561079c578193506107a3565b6001820392505b50506106ef565b506001600160a01b038516600090815260036020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60056020526000908152604090205481565b6040518060400160405280600381526020016210d41160ea1b81525081565b60008061084583604051806060016040528060258152602001611b7060259139610e61565b9050610852338583610ecf565b5060019392505050565b6001600160a01b03811660009081526004602052604081205463ffffffff16806108875760006108c6565b6001600160a01b0383166000908152600360209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b60408051808201909152600981526810dbda5b9cdc185a5960ba1b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f9066c2367430090b317836634982dae93f8216c13774533c367ac9a715abbee061093a611104565b3060405160200161094e9493929190611745565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf88888860405160200161099f9493929190611721565b604051602081830303815290604052805190602001209050600082826040516020016109cc9291906116aa565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610a099493929190611769565b6020604051602081039080840390855afa158015610a2b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610a5e5760405162461bcd60e51b81526004016105f9906118a5565b6001600160a01b03811660009081526005602052604090208054600181019091558914610a9d5760405162461bcd60e51b81526004016105f990611a09565b87421115610abd5760405162461bcd60e51b81526004016105f990611947565b610ac7818b61107a565b505050505b505050505050565b6000600019861415610ae95750600019610b0e565b610b0b86604051806060016040528060238152602001611bc460239139610e61565b90505b60408051808201909152600981526810dbda5b9cdc185a5960ba1b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f9066c2367430090b317836634982dae93f8216c13774533c367ac9a715abbee0610b7b611104565b30604051602001610b8f9493929190611745565b60408051601f1981840301815282825280516020918201206001600160a01b038d166000908152600583529283208054600181019091559094509192610c01927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928e928e928e9290918e91016116ed565b60405160208183030381529060405280519060200120905060008282604051602001610c2e9291906116aa565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610c6b9493929190611769565b6020604051602081039080840390855afa158015610c8d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cc05760405162461bcd60e51b81526004016105f990611837565b8b6001600160a01b0316816001600160a01b031614610cf15760405162461bcd60e51b81526004016105f99061198c565b88421115610d115760405162461bcd60e51b81526004016105f99061186e565b846000808e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92587604051610dc09190611a88565b60405180910390a3505050505050505050505050565b6001600160a01b039182166000908152602081815260408083209390941682529190915220546001600160601b031690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600360209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b600081600160601b8410610e885760405162461bcd60e51b81526004016105f99190611787565b509192915050565b6000836001600160601b0316836001600160601b031611158290610ec75760405162461bcd60e51b81526004016105f99190611787565b505050900390565b6001600160a01b038316610ef55760405162461bcd60e51b81526004016105f9906117da565b6001600160a01b038216610f1b5760405162461bcd60e51b81526004016105f9906118ea565b6001600160a01b038316600090815260016020908152604091829020548251606081019093526035808452610f66936001600160601b039092169285929190611be790830139610e90565b6001600160a01b03848116600090815260016020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352602f808452610fce9491909116928592909190611b9590830139611108565b6001600160a01b038381166000818152600160205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061103b908590611a88565b60405180910390a36001600160a01b0380841660009081526002602052604080822054858416835291205461107592918216911683611144565b505050565b6001600160a01b03808316600081815260026020818152604080842080546001845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46110fe828483611144565b50505050565b4690565b6000838301826001600160601b03808716908316101561113b5760405162461bcd60e51b81526004016105f99190611787565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561116f57506000816001600160601b0316115b15611075576001600160a01b03831615611227576001600160a01b03831660009081526004602052604081205463ffffffff1690816111af5760006111ee565b6001600160a01b0385166000908152600360209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006112158285604051806060016040528060278152602001611acc60279139610e90565b9050611223868484846112d2565b5050505b6001600160a01b03821615611075576001600160a01b03821660009081526004602052604081205463ffffffff1690816112625760006112a1565b6001600160a01b0384166000908152600360209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006112c88285604051806060016040528060268152602001611b4a60269139611108565b9050610acc858484845b60006112f643604051806060016040528060338152602001611af360339139611487565b905060008463ffffffff1611801561133f57506001600160a01b038516600090815260036020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561139e576001600160a01b0385166000908152600360209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b0385160217905561143d565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600383528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600490935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611478929190611a9c565b60405180910390a25050505050565b600081600160201b8410610e885760405162461bcd60e51b81526004016105f99190611787565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146103ce57600080fd5b803560ff811681146103ce57600080fd5b6000602082840312156114fe578081fd5b6108c683836114c5565b6000806040838503121561151a578081fd5b61152484846114c5565b915061153384602085016114c5565b90509250929050565b600080600060608486031215611550578081fd5b833561155b81611ab6565b9250602084013561156b81611ab6565b929592945050506040919091013590565b600080600080600080600060e0888a031215611596578283fd5b6115a089896114c5565b96506115af8960208a016114c5565b955060408801359450606088013593506115cc8960808a016114dc565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156115fa578182fd5b61160484846114c5565b946020939093013593505050565b60008060008060008060c0878903121561162a578182fd5b61163488886114c5565b9550602087013594506040870135935061165188606089016114dc565b92506080870135915060a087013590509295509295509295565b6000806040838503121561167d578182fd5b61168784846114c5565b9150602083013563ffffffff8116811461169f578182fd5b809150509250929050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b818110156117b357858101830151858201604001528201611797565b818111156117c45783604083870101525b50601f01601f1916929092016040019392505050565b6020808252603b908201527f4350443a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726160408201527f6e736665722066726f6d20746865207a65726f20616464726573730000000000606082015260800190565b6020808252601e908201527f4350443a3a7065726d69743a20696e76616c6964207369676e61747572650000604082015260600190565b6020808252601e908201527f4350443a3a7065726d69743a207369676e617475726520657870697265640000604082015260600190565b60208082526025908201527f4350443a3a64656c656761746542795369673a20696e76616c6964207369676e604082015264617475726560d81b606082015260800190565b60208082526039908201527f4350443a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726160408201527f6e7366657220746f20746865207a65726f206164647265737300000000000000606082015260800190565b60208082526025908201527f4350443a3a64656c656761746542795369673a207369676e61747572652065786040820152641c1a5c995960da1b606082015260800190565b60208082526019908201527f4350443a3a7065726d69743a20756e617574686f72697a656400000000000000604082015260600190565b60208082526026908201527f4350443a3a6765745072696f72566f7465733a206e6f742079657420646574656040820152651c9b5a5b995960d21b606082015260800190565b60208082526021908201527f4350443a3a64656c656761746542795369673a20696e76616c6964206e6f6e636040820152606560f81b606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0392831681529116602082015260400190565b6001600160a01b038116811461059957600080fdfe4350443a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734350443a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734350443a3a617070726f76653a20616d6f756e74206578636565647320393620626974734350443a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734350443a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734350443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734350443a3a7065726d69743a20616d6f756e74206578636565647320393620626974734350443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654350443a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365a2646970667358221220ae63ac51dc7614efa461748b87205b28aed3484f7ccf31d40bf308fce45d88e864736f6c634300060c00330000000000000000000000001340cbffeeac3a9040bd9c6189642ca28904d6b7

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063b4b5ea571161007c578063b4b5ea571461027d578063c3cda52014610290578063d505accf146102a3578063dd62ed3e146102b6578063e7a324dc146102c9578063f1127ed8146102d157610137565b806370a082311461021c578063782d6fe11461022f5780637ecebe001461024f57806395d89b4114610262578063a9059cbb1461026a57610137565b806330adf81f116100ff57806330adf81f146101aa578063313ce567146101b2578063587cde1e146101c75780635c19a95c146101e75780636fcfff45146101fc57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017a57806320606b701461018f57806323b872dd14610197575b600080fd5b6101446102f2565b6040516101519190611787565b60405180910390f35b61016d6101683660046115e8565b610317565b60405161015191906116d9565b6101826103d4565b60405161015191906116e4565b6101826103e4565b61016d6101a536600461153c565b610408565b61018261054b565b6101ba61056f565b6040516101519190611a7a565b6101da6101d53660046114ed565b610574565b60405161015191906116c5565b6101fa6101f53660046114ed565b61058f565b005b61020f61020a3660046114ed565b61059c565b6040516101519190611a4a565b61018261022a3660046114ed565b6105b4565b61024261023d3660046115e8565b6105d8565b6040516101519190611a88565b61018261025d3660046114ed565b6107ef565b610144610801565b61016d6102783660046115e8565b610820565b61024261028b3660046114ed565b61085c565b6101fa61029e366004611612565b6108cd565b6101fa6102b136600461157c565b610ad4565b6101826102c4366004611508565b610dd6565b610182610e08565b6102e46102df36600461166b565b610e2c565b604051610151929190611a5b565b6040518060400160405280600981526020016810dbda5b9cdc185a5960ba1b81525081565b60008060001983141561032d5750600019610352565b61034f83604051806060016040528060248152602001611b2660249139610e61565b90505b336000818152602081815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103c0908590611a88565b60405180910390a360019150505b92915050565b6b0295be96e64066972000000081565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b0383166000908152602081815260408083203380855290835281842054825160608101909352602480845291936001600160601b0390911692859261045e9288929190611b2690830139610e61565b9050866001600160a01b0316836001600160a01b03161415801561048b57506001600160601b0382811614155b156105335760006104b583836040518060600160405280603c8152602001611c1c603c9139610e90565b6001600160a01b03898116600081815260208181526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610529908590611a88565b60405180910390a3505b61053e878783610ecf565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b6002602052600090815260409020546001600160a01b031681565b610599338261107a565b50565b60046020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600160205260409020546001600160601b031690565b60004382106106025760405162461bcd60e51b81526004016105f9906119c3565b60405180910390fd5b6001600160a01b03831660009081526004602052604090205463ffffffff16806106305760009150506103ce565b6001600160a01b038416600090815260036020908152604080832063ffffffff6000198601811685529252909120541683106106ac576001600160a01b03841660009081526003602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b031690506103ce565b6001600160a01b038416600090815260036020908152604080832083805290915290205463ffffffff168310156106e75760009150506103ce565b600060001982015b8163ffffffff168163ffffffff1611156107aa57600282820363ffffffff160481036107196114ae565b506001600160a01b038716600090815260036020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610785576020015194506103ce9350505050565b805163ffffffff1687111561079c578193506107a3565b6001820392505b50506106ef565b506001600160a01b038516600090815260036020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60056020526000908152604090205481565b6040518060400160405280600381526020016210d41160ea1b81525081565b60008061084583604051806060016040528060258152602001611b7060259139610e61565b9050610852338583610ecf565b5060019392505050565b6001600160a01b03811660009081526004602052604081205463ffffffff16806108875760006108c6565b6001600160a01b0383166000908152600360209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b60408051808201909152600981526810dbda5b9cdc185a5960ba1b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f9066c2367430090b317836634982dae93f8216c13774533c367ac9a715abbee061093a611104565b3060405160200161094e9493929190611745565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf88888860405160200161099f9493929190611721565b604051602081830303815290604052805190602001209050600082826040516020016109cc9291906116aa565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610a099493929190611769565b6020604051602081039080840390855afa158015610a2b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610a5e5760405162461bcd60e51b81526004016105f9906118a5565b6001600160a01b03811660009081526005602052604090208054600181019091558914610a9d5760405162461bcd60e51b81526004016105f990611a09565b87421115610abd5760405162461bcd60e51b81526004016105f990611947565b610ac7818b61107a565b505050505b505050505050565b6000600019861415610ae95750600019610b0e565b610b0b86604051806060016040528060238152602001611bc460239139610e61565b90505b60408051808201909152600981526810dbda5b9cdc185a5960ba1b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f9066c2367430090b317836634982dae93f8216c13774533c367ac9a715abbee0610b7b611104565b30604051602001610b8f9493929190611745565b60408051601f1981840301815282825280516020918201206001600160a01b038d166000908152600583529283208054600181019091559094509192610c01927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928e928e928e9290918e91016116ed565b60405160208183030381529060405280519060200120905060008282604051602001610c2e9291906116aa565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610c6b9493929190611769565b6020604051602081039080840390855afa158015610c8d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cc05760405162461bcd60e51b81526004016105f990611837565b8b6001600160a01b0316816001600160a01b031614610cf15760405162461bcd60e51b81526004016105f99061198c565b88421115610d115760405162461bcd60e51b81526004016105f99061186e565b846000808e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92587604051610dc09190611a88565b60405180910390a3505050505050505050505050565b6001600160a01b039182166000908152602081815260408083209390941682529190915220546001600160601b031690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600360209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b600081600160601b8410610e885760405162461bcd60e51b81526004016105f99190611787565b509192915050565b6000836001600160601b0316836001600160601b031611158290610ec75760405162461bcd60e51b81526004016105f99190611787565b505050900390565b6001600160a01b038316610ef55760405162461bcd60e51b81526004016105f9906117da565b6001600160a01b038216610f1b5760405162461bcd60e51b81526004016105f9906118ea565b6001600160a01b038316600090815260016020908152604091829020548251606081019093526035808452610f66936001600160601b039092169285929190611be790830139610e90565b6001600160a01b03848116600090815260016020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352602f808452610fce9491909116928592909190611b9590830139611108565b6001600160a01b038381166000818152600160205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061103b908590611a88565b60405180910390a36001600160a01b0380841660009081526002602052604080822054858416835291205461107592918216911683611144565b505050565b6001600160a01b03808316600081815260026020818152604080842080546001845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46110fe828483611144565b50505050565b4690565b6000838301826001600160601b03808716908316101561113b5760405162461bcd60e51b81526004016105f99190611787565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561116f57506000816001600160601b0316115b15611075576001600160a01b03831615611227576001600160a01b03831660009081526004602052604081205463ffffffff1690816111af5760006111ee565b6001600160a01b0385166000908152600360209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006112158285604051806060016040528060278152602001611acc60279139610e90565b9050611223868484846112d2565b5050505b6001600160a01b03821615611075576001600160a01b03821660009081526004602052604081205463ffffffff1690816112625760006112a1565b6001600160a01b0384166000908152600360209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006112c88285604051806060016040528060268152602001611b4a60269139611108565b9050610acc858484845b60006112f643604051806060016040528060338152602001611af360339139611487565b905060008463ffffffff1611801561133f57506001600160a01b038516600090815260036020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561139e576001600160a01b0385166000908152600360209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b0385160217905561143d565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600383528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600490935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611478929190611a9c565b60405180910390a25050505050565b600081600160201b8410610e885760405162461bcd60e51b81526004016105f99190611787565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146103ce57600080fd5b803560ff811681146103ce57600080fd5b6000602082840312156114fe578081fd5b6108c683836114c5565b6000806040838503121561151a578081fd5b61152484846114c5565b915061153384602085016114c5565b90509250929050565b600080600060608486031215611550578081fd5b833561155b81611ab6565b9250602084013561156b81611ab6565b929592945050506040919091013590565b600080600080600080600060e0888a031215611596578283fd5b6115a089896114c5565b96506115af8960208a016114c5565b955060408801359450606088013593506115cc8960808a016114dc565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156115fa578182fd5b61160484846114c5565b946020939093013593505050565b60008060008060008060c0878903121561162a578182fd5b61163488886114c5565b9550602087013594506040870135935061165188606089016114dc565b92506080870135915060a087013590509295509295509295565b6000806040838503121561167d578182fd5b61168784846114c5565b9150602083013563ffffffff8116811461169f578182fd5b809150509250929050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b818110156117b357858101830151858201604001528201611797565b818111156117c45783604083870101525b50601f01601f1916929092016040019392505050565b6020808252603b908201527f4350443a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726160408201527f6e736665722066726f6d20746865207a65726f20616464726573730000000000606082015260800190565b6020808252601e908201527f4350443a3a7065726d69743a20696e76616c6964207369676e61747572650000604082015260600190565b6020808252601e908201527f4350443a3a7065726d69743a207369676e617475726520657870697265640000604082015260600190565b60208082526025908201527f4350443a3a64656c656761746542795369673a20696e76616c6964207369676e604082015264617475726560d81b606082015260800190565b60208082526039908201527f4350443a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726160408201527f6e7366657220746f20746865207a65726f206164647265737300000000000000606082015260800190565b60208082526025908201527f4350443a3a64656c656761746542795369673a207369676e61747572652065786040820152641c1a5c995960da1b606082015260800190565b60208082526019908201527f4350443a3a7065726d69743a20756e617574686f72697a656400000000000000604082015260600190565b60208082526026908201527f4350443a3a6765745072696f72566f7465733a206e6f742079657420646574656040820152651c9b5a5b995960d21b606082015260800190565b60208082526021908201527f4350443a3a64656c656761746542795369673a20696e76616c6964206e6f6e636040820152606560f81b606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0392831681529116602082015260400190565b6001600160a01b038116811461059957600080fdfe4350443a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734350443a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734350443a3a617070726f76653a20616d6f756e74206578636565647320393620626974734350443a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734350443a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734350443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734350443a3a7065726d69743a20616d6f756e74206578636565647320393620626974734350443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654350443a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365a2646970667358221220ae63ac51dc7614efa461748b87205b28aed3484f7ccf31d40bf308fce45d88e864736f6c634300060c0033

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

0000000000000000000000001340cbffeeac3a9040bd9c6189642ca28904d6b7

-----Decoded View---------------
Arg [0] : account (address): 0x1340CbFfEEAC3a9040bd9c6189642Ca28904D6b7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001340cbffeeac3a9040bd9c6189642ca28904d6b7


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.