ETH Price: $3,404.64 (+2.07%)

Token

CypherCash.app (CYCASH)
 

Overview

Max Total Supply

100,000,000 CYCASH

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
796,320.772953987792163451 CYCASH

Value
$0.00
0x26490a3c80fbe1fb085cd46881d69944a81a4586
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:
CypherCashCoin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 1 : Cypher.sol
// Website  : https://cyphercash.app/
// Gitbook  : https://cypher-cash.gitbook.io/
// Twitter  : https://twitter.com/CypherCashApp
// Telegram : https://t.me/cyphercashapp

// $$$$$$\                      $$\                                  $$$$$$\                      $$\              $$$$$$\
// $$  __$$\                     $$ |                                $$  __$$\                     $$ |            $$  __$$\
// $$ /  \__|$$\   $$\  $$$$$$\  $$$$$$$\   $$$$$$\   $$$$$$\        $$ /  \__| $$$$$$\   $$$$$$$\ $$$$$$$\        $$ /  $$ | $$$$$$\   $$$$$$\
// $$ |      $$ |  $$ |$$  __$$\ $$  __$$\ $$  __$$\ $$  __$$\       $$ |       \____$$\ $$  _____|$$  __$$\       $$$$$$$$ |$$  __$$\ $$  __$$\
// $$ |      $$ |  $$ |$$ /  $$ |$$ |  $$ |$$$$$$$$ |$$ |  \__|      $$ |       $$$$$$$ |\$$$$$$\  $$ |  $$ |      $$  __$$ |$$ /  $$ |$$ /  $$ |
// $$ |  $$\ $$ |  $$ |$$ |  $$ |$$ |  $$ |$$   ____|$$ |            $$ |  $$\ $$  __$$ | \____$$\ $$ |  $$ |      $$ |  $$ |$$ |  $$ |$$ |  $$ |
// \$$$$$$  |\$$$$$$$ |$$$$$$$  |$$ |  $$ |\$$$$$$$\ $$ |            \$$$$$$  |\$$$$$$$ |$$$$$$$  |$$ |  $$ |      $$ |  $$ |$$$$$$$  |$$$$$$$  |
//  \______/  \____$$ |$$  ____/ \__|  \__| \_______|\__|             \______/  \_______|\_______/ \__|  \__|      \__|  \__|$$  ____/ $$  ____/
//           $$\   $$ |$$ |                                                                                                  $$ |      $$ |
//           \$$$$$$  |$$ |                                                                                                  $$ |      $$ |
//            \______/ \__|                                                                                                  \__|      \__|

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

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

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

contract Ownable is Context {
    address private _owner;

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

    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
}

contract CypherCashCoin is Context, IERC20, Ownable {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;

    address private uniswapV2Pair;
    address payable private _taxWallet;
    address payable private _revShare;
    IUniswapV2Router02 private uniswapV2Router;

    uint256 private constant _initialBuyTax = 40;
    uint256 private constant _initialSellTax = 40;
    uint256 private constant _reduceBuyTaxAt = 35;
    uint256 private constant _reduceSellTaxAt = 45;
    uint256 private constant _preventSwapBefore = 40;
    uint256 private _finalBuyTax = 20;
    uint256 private _finalSellTax = 20;
    uint256 private _buyCount = 0;
    uint256 private _countTax;

    string private constant _name = unicode"CypherCash.app";
    string private constant _symbol = unicode"CYCASH";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 100_000_000 * 10 ** _decimals;
    uint256 private constant _countTrigger = 8100 * 10 ** _decimals;
    uint256 public constant _taxSwapThreshold = 1_000_000 * 10 ** _decimals;
    uint256 public constant _maxTaxSwap = 1_000_000 * 10 ** _decimals;
    uint256 public _maxTxAmount = 2_000_000 * 10 ** _decimals;
    uint256 public _maxWalletSize = 2_000_000 * 10 ** _decimals;

    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;

    event FinalTax(uint256 _valueBuy, uint256 _valueSell);
    event TradingActive(bool _tradingOpen, bool _swapEnabled);
    event maxAmount(uint256 _value);

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor() {
        _taxWallet = payable(msg.sender);
        _revShare = payable(msg.sender);
        _balances[_msgSender()] = _totalSupply;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[_taxWallet] = true;
        _isExcludedFromFee[_revShare] = true;
        _isExcludedFromFee[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")
        );
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0) && spender != address(0), "ERC20: approve the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0) && to != address(0), "ERC20: transfer the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 taxAmount = 0;

        if (from != owner() && to != owner()) {
            if (!tradingOpen) {
                require(_isExcludedFromFee[to] || _isExcludedFromFee[from], "trading not yet open");
            }

            if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to]) {
                require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");
                _buyCount++;
            }

            if (to == uniswapV2Pair && from != address(this)) {
                taxAmount = amount.mul((_buyCount > _reduceSellTaxAt) ? _finalSellTax : _initialSellTax) / 100;
            } else if (from == uniswapV2Pair && to != address(this)) {
                taxAmount = amount.mul((_buyCount > _reduceBuyTaxAt) ? _finalBuyTax : _initialBuyTax) / 100;
            }

            _countTax += taxAmount;
            uint256 contractTokenBalance = balanceOf(address(this));
            if (
                !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _taxSwapThreshold
                    && _buyCount > _preventSwapBefore && _countTax > _countTrigger
            ) {
                uint256 getMinValue = (contractTokenBalance > _maxTaxSwap) ? _maxTaxSwap : contractTokenBalance;
                swapTokensForEth((amount > getMinValue) ? getMinValue : amount);
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee(contractETHBalance);
                }
                _countTax = 0;
            }
        }

        if (taxAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(taxAmount);
            emit Transfer(from, address(this), taxAmount);
        }
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }

    function sendETHToFee(uint256 amount) private {
        uint256 tax = (_buyCount > _reduceBuyTaxAt) ? _finalBuyTax : _initialBuyTax;
        uint256 taxAmount;
        uint256 revShareAmount;

        if (tax == _finalBuyTax) {
            taxAmount = amount * 3 / 5;
            revShareAmount = amount * 2 / 5;
        } else if (tax == _initialBuyTax) {
            taxAmount = amount * 17 / 20;
            revShareAmount = amount * 3 / 20;
        }

        _taxWallet.transfer(taxAmount);
        _revShare.transfer(revShareAmount);
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount, 0, path, address(this), block.timestamp
        );
    }

    function pair() external onlyOwner {
        require(!tradingOpen, "init already called");
        uint256 tokenAmount = balanceOf(address(this)).sub(_totalSupply.mul(_initialBuyTax).div(100));
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _totalSupply);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this), tokenAmount, 0, 0, _msgSender(), block.timestamp
        );
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint256).max);
    }

    function removeAllLimits() external onlyOwner {
        _maxTxAmount = _totalSupply;
        _maxWalletSize = _totalSupply;
        emit maxAmount(_totalSupply);
    }

    function openTradingGo() external onlyOwner {
        require(!tradingOpen, "trading already open");
        swapEnabled = true;
        tradingOpen = true;
        emit TradingActive(tradingOpen, swapEnabled);
    }

    function setFinalTaxeForEver(uint256 _valueBuy, uint256 _valueSell) external onlyOwner {
        require(_valueBuy <= 30 && _valueSell <= 30 && tradingOpen, "Exceeds value");
        _finalBuyTax = _valueBuy;
        _finalSellTax = _valueSell;
        emit FinalTax(_valueBuy, _valueSell);
    }

    /**
     * @dev Returns whether the given address is excluded from fees.
     * @param account The address to check.
     * @return bool True if the address is excluded from fees, false otherwise.
     */
    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    receive() external payable {}
}

Settings
{
  "remappings": [
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_valueBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_valueSell","type":"uint256"}],"name":"FinalTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_tradingOpen","type":"bool"},{"indexed":false,"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"TradingActive","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"maxAmount","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTradingGo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_valueBuy","type":"uint256"},{"internalType":"uint256","name":"_valueSell","type":"uint256"}],"name":"setFinalTaxeForEver","outputs":[],"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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052601460085560146009556000600a556012600a62000023919062000302565b6200003290621e84806200031a565b600c55620000436012600a62000302565b6200005290621e84806200031a565b600d55600e805462ffff00191690553480156200006e57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060058054336001600160a01b03199182168117909255600680549091169091179055620000e06012600a62000302565b620000f0906305f5e1006200031a565b3360009081526001602081905260408220929092556003906200011b6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905560055482168152600390935281832080548516600190811790915560065490911683528183208054851682179055308352912080549092161790556200018c3390565b6001600160a01b031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001c66012600a62000302565b620001d6906305f5e1006200031a565b60405190815260200160405180910390a362000334565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000244578160001904821115620002285762000228620001ed565b808516156200023657918102915b93841c939080029062000208565b509250929050565b6000826200025d57506001620002fc565b816200026c57506000620002fc565b81600181146200028557600281146200029057620002b0565b6001915050620002fc565b60ff841115620002a457620002a4620001ed565b50506001821b620002fc565b5060208310610133831016604e8410600b8410161715620002d5575081810a620002fc565b620002e1838362000203565b8060001904821115620002f857620002f8620001ed565b0290505b92915050565b60006200031360ff8416836200024c565b9392505050565b8082028115828204841417620002fc57620002fc620001ed565b611a9280620003446000396000f3fe6080604052600436106101235760003560e01c80637e908853116100a0578063a8aa1b3111610064578063a8aa1b311461035a578063a9059cbb1461036f578063bf474bed146101a8578063db05e5cb1461038f578063dd62ed3e146103a457600080fd5b80637e908853146102b85780638da5cb5b146102d85780638f9a55c01461030057806395d89b411461031657806399f523491461034557600080fd5b8063313ce567116100e7578063313ce567146102005780635342acb41461021c57806370a0823114610255578063715018a61461028b5780637d1db4a5146102a257600080fd5b806306fdde031461012f578063095ea7b3146101785780630faee56f146101a857806318160ddd146101cb57806323b872dd146101e057600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b5060408051808201909152600e81526d0437970686572436173682e6170760941b60208201525b60405161016f919061163f565b60405180910390f35b34801561018457600080fd5b506101986101933660046116a5565b6103ea565b604051901515815260200161016f565b3480156101b457600080fd5b506101bd610401565b60405190815260200161016f565b3480156101d757600080fd5b506101bd61041d565b3480156101ec57600080fd5b506101986101fb3660046116d1565b61043e565b34801561020c57600080fd5b506040516012815260200161016f565b34801561022857600080fd5b50610198610237366004611712565b6001600160a01b031660009081526003602052604090205460ff1690565b34801561026157600080fd5b506101bd610270366004611712565b6001600160a01b031660009081526001602052604090205490565b34801561029757600080fd5b506102a06104a7565b005b3480156102ae57600080fd5b506101bd600c5481565b3480156102c457600080fd5b506102a06102d336600461172f565b610524565b3480156102e457600080fd5b506000546040516001600160a01b03909116815260200161016f565b34801561030c57600080fd5b506101bd600d5481565b34801561032257600080fd5b50604080518082019091526006815265086b28682a6960d31b6020820152610162565b34801561035157600080fd5b506102a06105f1565b34801561036657600080fd5b506102a06106c1565b34801561037b57600080fd5b5061019861038a3660046116a5565b610a75565b34801561039b57600080fd5b506102a0610a82565b3480156103b057600080fd5b506101bd6103bf366004611751565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006103f7338484610b2f565b5060015b92915050565b61040d6012600a611884565b61041a90620f4240611893565b81565b600061042b6012600a611884565b610439906305f5e100611893565b905090565b600061044b848484610bfc565b61049d843361049885604051806060016040528060288152602001611a35602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906111e4565b610b2f565b5060019392505050565b6000546001600160a01b031633146104da5760405162461bcd60e51b81526004016104d1906118aa565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461054e5760405162461bcd60e51b81526004016104d1906118aa565b601e82111580156105605750601e8111155b801561056e5750600e5460ff165b6105aa5760405162461bcd60e51b815260206004820152600d60248201526c457863656564732076616c756560981b60448201526064016104d1565b6008829055600981905560408051838152602081018390527f78009e5656a5c60b3c047015fb856b2efbc6f42beed76119406d7d4e3fc161f4910160405180910390a15050565b6000546001600160a01b0316331461061b5760405162461bcd60e51b81526004016104d1906118aa565b600e5460ff16156106655760405162461bcd60e51b81526020600482015260146024820152733a3930b234b7339030b63932b0b23c9037b832b760611b60448201526064016104d1565b600e80546201000162ff00ff19909116179081905560408051600181526201000090920460ff16151560208301527f41a09f17206aad1ccd4bae176b5c5e0b2154e569947545c9019e6bb0cb4ef59c91015b60405180910390a1565b6000546001600160a01b031633146106eb5760405162461bcd60e51b81526004016104d1906118aa565b600e5460ff16156107345760405162461bcd60e51b81526020600482015260136024820152721a5b9a5d08185b1c9958591e4818d85b1b1959606a1b60448201526064016104d1565b600061077f6107696064610763602861074f6012600a611884565b61075d906305f5e100611893565b9061121e565b906112a7565b30600090815260016020526040902054906112e9565b600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091559091506107cb9030906107bd6012600a611884565b610498906305f5e100611893565b600760009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561081e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084291906118df565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c891906118df565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610915573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093991906118df565b600480546001600160a01b0319166001600160a01b039283161790556007541663f305d7194730846000803360405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109cd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109f291906118fc565b50506004805460075460405163095ea7b360e01b81526001600160a01b0391821693810193909352600019602484015216915063095ea7b3906044016020604051808303816000875af1158015610a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a71919061192a565b5050565b60006103f7338484610bfc565b6000546001600160a01b03163314610aac5760405162461bcd60e51b81526004016104d1906118aa565b610ab86012600a611884565b610ac6906305f5e100611893565b600c55610ad56012600a611884565b610ae3906305f5e100611893565b600d557f69ada53addde5123341ce3a822c5f66292103b2771e41e1f3c00c2de8a63a7f9610b136012600a611884565b610b21906305f5e100611893565b6040519081526020016106b7565b6001600160a01b03831615801590610b4f57506001600160a01b03821615155b610b9b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a20617070726f766520746865207a65726f20616464726573730060448201526064016104d1565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831615801590610c1c57506001600160a01b03821615155b610c685760405162461bcd60e51b815260206004820181905260248201527f45524332303a207472616e7366657220746865207a65726f206164647265737360448201526064016104d1565b60008111610cca5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104d1565b600080546001600160a01b03858116911614801590610cf757506000546001600160a01b03848116911614155b156110a157600e5460ff16610d88576001600160a01b03831660009081526003602052604090205460ff1680610d4557506001600160a01b03841660009081526003602052604090205460ff165b610d885760405162461bcd60e51b81526020600482015260146024820152733a3930b234b733903737ba103cb2ba1037b832b760611b60448201526064016104d1565b6004546001600160a01b038581169116148015610db357506007546001600160a01b03848116911614155b8015610dd857506001600160a01b03831660009081526003602052604090205460ff16155b15610ec057600c54821115610e2f5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104d1565b600d5482610e52856001600160a01b031660009081526001602052604090205490565b610e5c919061194c565b1115610eaa5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104d1565b600a8054906000610eba8361195f565b91905055505b6004546001600160a01b038481169116148015610ee657506001600160a01b0384163014155b15610f1d576064610f0c602d600a5411610f01576028610f05565b6009545b849061121e565b610f169190611978565b9050610f75565b6004546001600160a01b038581169116148015610f4357506001600160a01b0383163014155b15610f75576064610f686023600a5411610f5e576028610f05565b600854849061121e565b610f729190611978565b90505b80600b6000828254610f87919061194c565b909155505030600090815260016020526040902054600e54610100900460ff16158015610fc157506004546001600160a01b038581169116145b8015610fd55750600e5462010000900460ff165b8015610ff85750610fe86012600a611884565b610ff590620f4240611893565b81115b801561100657506028600a54115b801561102a57506110196012600a611884565b61102590611fa4611893565b600b54115b1561109f57600061103d6012600a611884565b61104a90620f4240611893565b8211611056578161106f565b6110626012600a611884565b61106f90620f4240611893565b9050611087818511611081578461132b565b8161132b565b478015611097576110978161149f565b50506000600b555b505b801561111b57306000908152600160205260409020546110c190826115b2565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111129085815260200190565b60405180910390a35b6001600160a01b03841660009081526001602052604090205461113e90836112e9565b6001600160a01b03851660009081526001602052604090205561118361116483836112e9565b6001600160a01b038516600090815260016020526040902054906115b2565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6111cd85856112e9565b60405190815260200160405180910390a350505050565b600081848411156112085760405162461bcd60e51b81526004016104d1919061163f565b506000611215848661199a565b95945050505050565b600082600003611230575060006103fb565b600061123c8385611893565b9050826112498583611978565b146112a05760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104d1565b9392505050565b60006112a083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611611565b60006112a083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111e4565b600e805461ff001916610100179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061136f5761136f6119ad565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156113c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ec91906118df565b816001815181106113ff576113ff6119ad565b6001600160a01b0392831660209182029290920101526007546114259130911684610b2f565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac9479061145e9085906000908690309042906004016119c3565b600060405180830381600087803b15801561147857600080fd5b505af115801561148c573d6000803e3d6000fd5b5050600e805461ff001916905550505050565b60006023600a54116114b25760286114b6565b6008545b905060008060085483036114fb5760056114d1856003611893565b6114db9190611978565b915060056114ea856002611893565b6114f49190611978565b9050611536565b60288303611536576014611510856011611893565b61151a9190611978565b91506014611529856003611893565b6115339190611978565b90505b6005546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015611570573d6000803e3d6000fd5b506006546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156115ab573d6000803e3d6000fd5b5050505050565b6000806115bf838561194c565b9050838110156112a05760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104d1565b600081836116325760405162461bcd60e51b81526004016104d1919061163f565b5060006112158486611978565b600060208083528351808285015260005b8181101561166c57858101830151858201604001528201611650565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116a257600080fd5b50565b600080604083850312156116b857600080fd5b82356116c38161168d565b946020939093013593505050565b6000806000606084860312156116e657600080fd5b83356116f18161168d565b925060208401356117018161168d565b929592945050506040919091013590565b60006020828403121561172457600080fd5b81356112a08161168d565b6000806040838503121561174257600080fd5b50508035926020909101359150565b6000806040838503121561176457600080fd5b823561176f8161168d565b9150602083013561177f8161168d565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156117db5781600019048211156117c1576117c161178a565b808516156117ce57918102915b93841c93908002906117a5565b509250929050565b6000826117f2575060016103fb565b816117ff575060006103fb565b8160018114611815576002811461181f5761183b565b60019150506103fb565b60ff8411156118305761183061178a565b50506001821b6103fb565b5060208310610133831016604e8410600b841016171561185e575081810a6103fb565b61186883836117a0565b806000190482111561187c5761187c61178a565b029392505050565b60006112a060ff8416836117e3565b80820281158282048414176103fb576103fb61178a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156118f157600080fd5b81516112a08161168d565b60008060006060848603121561191157600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561193c57600080fd5b815180151581146112a057600080fd5b808201808211156103fb576103fb61178a565b6000600182016119715761197161178a565b5060010190565b60008261199557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103fb576103fb61178a565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a135784516001600160a01b0316835293830193918301916001016119ee565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220638abdf4c2e768b406af642f5e3ec4b35c4d76c39d0962bb9f3cd3880bceb90c64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101235760003560e01c80637e908853116100a0578063a8aa1b3111610064578063a8aa1b311461035a578063a9059cbb1461036f578063bf474bed146101a8578063db05e5cb1461038f578063dd62ed3e146103a457600080fd5b80637e908853146102b85780638da5cb5b146102d85780638f9a55c01461030057806395d89b411461031657806399f523491461034557600080fd5b8063313ce567116100e7578063313ce567146102005780635342acb41461021c57806370a0823114610255578063715018a61461028b5780637d1db4a5146102a257600080fd5b806306fdde031461012f578063095ea7b3146101785780630faee56f146101a857806318160ddd146101cb57806323b872dd146101e057600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b5060408051808201909152600e81526d0437970686572436173682e6170760941b60208201525b60405161016f919061163f565b60405180910390f35b34801561018457600080fd5b506101986101933660046116a5565b6103ea565b604051901515815260200161016f565b3480156101b457600080fd5b506101bd610401565b60405190815260200161016f565b3480156101d757600080fd5b506101bd61041d565b3480156101ec57600080fd5b506101986101fb3660046116d1565b61043e565b34801561020c57600080fd5b506040516012815260200161016f565b34801561022857600080fd5b50610198610237366004611712565b6001600160a01b031660009081526003602052604090205460ff1690565b34801561026157600080fd5b506101bd610270366004611712565b6001600160a01b031660009081526001602052604090205490565b34801561029757600080fd5b506102a06104a7565b005b3480156102ae57600080fd5b506101bd600c5481565b3480156102c457600080fd5b506102a06102d336600461172f565b610524565b3480156102e457600080fd5b506000546040516001600160a01b03909116815260200161016f565b34801561030c57600080fd5b506101bd600d5481565b34801561032257600080fd5b50604080518082019091526006815265086b28682a6960d31b6020820152610162565b34801561035157600080fd5b506102a06105f1565b34801561036657600080fd5b506102a06106c1565b34801561037b57600080fd5b5061019861038a3660046116a5565b610a75565b34801561039b57600080fd5b506102a0610a82565b3480156103b057600080fd5b506101bd6103bf366004611751565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006103f7338484610b2f565b5060015b92915050565b61040d6012600a611884565b61041a90620f4240611893565b81565b600061042b6012600a611884565b610439906305f5e100611893565b905090565b600061044b848484610bfc565b61049d843361049885604051806060016040528060288152602001611a35602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906111e4565b610b2f565b5060019392505050565b6000546001600160a01b031633146104da5760405162461bcd60e51b81526004016104d1906118aa565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461054e5760405162461bcd60e51b81526004016104d1906118aa565b601e82111580156105605750601e8111155b801561056e5750600e5460ff165b6105aa5760405162461bcd60e51b815260206004820152600d60248201526c457863656564732076616c756560981b60448201526064016104d1565b6008829055600981905560408051838152602081018390527f78009e5656a5c60b3c047015fb856b2efbc6f42beed76119406d7d4e3fc161f4910160405180910390a15050565b6000546001600160a01b0316331461061b5760405162461bcd60e51b81526004016104d1906118aa565b600e5460ff16156106655760405162461bcd60e51b81526020600482015260146024820152733a3930b234b7339030b63932b0b23c9037b832b760611b60448201526064016104d1565b600e80546201000162ff00ff19909116179081905560408051600181526201000090920460ff16151560208301527f41a09f17206aad1ccd4bae176b5c5e0b2154e569947545c9019e6bb0cb4ef59c91015b60405180910390a1565b6000546001600160a01b031633146106eb5760405162461bcd60e51b81526004016104d1906118aa565b600e5460ff16156107345760405162461bcd60e51b81526020600482015260136024820152721a5b9a5d08185b1c9958591e4818d85b1b1959606a1b60448201526064016104d1565b600061077f6107696064610763602861074f6012600a611884565b61075d906305f5e100611893565b9061121e565b906112a7565b30600090815260016020526040902054906112e9565b600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091559091506107cb9030906107bd6012600a611884565b610498906305f5e100611893565b600760009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561081e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084291906118df565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c891906118df565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610915573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093991906118df565b600480546001600160a01b0319166001600160a01b039283161790556007541663f305d7194730846000803360405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109cd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109f291906118fc565b50506004805460075460405163095ea7b360e01b81526001600160a01b0391821693810193909352600019602484015216915063095ea7b3906044016020604051808303816000875af1158015610a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a71919061192a565b5050565b60006103f7338484610bfc565b6000546001600160a01b03163314610aac5760405162461bcd60e51b81526004016104d1906118aa565b610ab86012600a611884565b610ac6906305f5e100611893565b600c55610ad56012600a611884565b610ae3906305f5e100611893565b600d557f69ada53addde5123341ce3a822c5f66292103b2771e41e1f3c00c2de8a63a7f9610b136012600a611884565b610b21906305f5e100611893565b6040519081526020016106b7565b6001600160a01b03831615801590610b4f57506001600160a01b03821615155b610b9b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a20617070726f766520746865207a65726f20616464726573730060448201526064016104d1565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831615801590610c1c57506001600160a01b03821615155b610c685760405162461bcd60e51b815260206004820181905260248201527f45524332303a207472616e7366657220746865207a65726f206164647265737360448201526064016104d1565b60008111610cca5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104d1565b600080546001600160a01b03858116911614801590610cf757506000546001600160a01b03848116911614155b156110a157600e5460ff16610d88576001600160a01b03831660009081526003602052604090205460ff1680610d4557506001600160a01b03841660009081526003602052604090205460ff165b610d885760405162461bcd60e51b81526020600482015260146024820152733a3930b234b733903737ba103cb2ba1037b832b760611b60448201526064016104d1565b6004546001600160a01b038581169116148015610db357506007546001600160a01b03848116911614155b8015610dd857506001600160a01b03831660009081526003602052604090205460ff16155b15610ec057600c54821115610e2f5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104d1565b600d5482610e52856001600160a01b031660009081526001602052604090205490565b610e5c919061194c565b1115610eaa5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104d1565b600a8054906000610eba8361195f565b91905055505b6004546001600160a01b038481169116148015610ee657506001600160a01b0384163014155b15610f1d576064610f0c602d600a5411610f01576028610f05565b6009545b849061121e565b610f169190611978565b9050610f75565b6004546001600160a01b038581169116148015610f4357506001600160a01b0383163014155b15610f75576064610f686023600a5411610f5e576028610f05565b600854849061121e565b610f729190611978565b90505b80600b6000828254610f87919061194c565b909155505030600090815260016020526040902054600e54610100900460ff16158015610fc157506004546001600160a01b038581169116145b8015610fd55750600e5462010000900460ff165b8015610ff85750610fe86012600a611884565b610ff590620f4240611893565b81115b801561100657506028600a54115b801561102a57506110196012600a611884565b61102590611fa4611893565b600b54115b1561109f57600061103d6012600a611884565b61104a90620f4240611893565b8211611056578161106f565b6110626012600a611884565b61106f90620f4240611893565b9050611087818511611081578461132b565b8161132b565b478015611097576110978161149f565b50506000600b555b505b801561111b57306000908152600160205260409020546110c190826115b2565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111129085815260200190565b60405180910390a35b6001600160a01b03841660009081526001602052604090205461113e90836112e9565b6001600160a01b03851660009081526001602052604090205561118361116483836112e9565b6001600160a01b038516600090815260016020526040902054906115b2565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6111cd85856112e9565b60405190815260200160405180910390a350505050565b600081848411156112085760405162461bcd60e51b81526004016104d1919061163f565b506000611215848661199a565b95945050505050565b600082600003611230575060006103fb565b600061123c8385611893565b9050826112498583611978565b146112a05760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104d1565b9392505050565b60006112a083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611611565b60006112a083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111e4565b600e805461ff001916610100179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061136f5761136f6119ad565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156113c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ec91906118df565b816001815181106113ff576113ff6119ad565b6001600160a01b0392831660209182029290920101526007546114259130911684610b2f565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac9479061145e9085906000908690309042906004016119c3565b600060405180830381600087803b15801561147857600080fd5b505af115801561148c573d6000803e3d6000fd5b5050600e805461ff001916905550505050565b60006023600a54116114b25760286114b6565b6008545b905060008060085483036114fb5760056114d1856003611893565b6114db9190611978565b915060056114ea856002611893565b6114f49190611978565b9050611536565b60288303611536576014611510856011611893565b61151a9190611978565b91506014611529856003611893565b6115339190611978565b90505b6005546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015611570573d6000803e3d6000fd5b506006546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156115ab573d6000803e3d6000fd5b5050505050565b6000806115bf838561194c565b9050838110156112a05760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104d1565b600081836116325760405162461bcd60e51b81526004016104d1919061163f565b5060006112158486611978565b600060208083528351808285015260005b8181101561166c57858101830151858201604001528201611650565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116a257600080fd5b50565b600080604083850312156116b857600080fd5b82356116c38161168d565b946020939093013593505050565b6000806000606084860312156116e657600080fd5b83356116f18161168d565b925060208401356117018161168d565b929592945050506040919091013590565b60006020828403121561172457600080fd5b81356112a08161168d565b6000806040838503121561174257600080fd5b50508035926020909101359150565b6000806040838503121561176457600080fd5b823561176f8161168d565b9150602083013561177f8161168d565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156117db5781600019048211156117c1576117c161178a565b808516156117ce57918102915b93841c93908002906117a5565b509250929050565b6000826117f2575060016103fb565b816117ff575060006103fb565b8160018114611815576002811461181f5761183b565b60019150506103fb565b60ff8411156118305761183061178a565b50506001821b6103fb565b5060208310610133831016604e8410600b841016171561185e575081810a6103fb565b61186883836117a0565b806000190482111561187c5761187c61178a565b029392505050565b60006112a060ff8416836117e3565b80820281158282048414176103fb576103fb61178a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156118f157600080fd5b81516112a08161168d565b60008060006060848603121561191157600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561193c57600080fd5b815180151581146112a057600080fd5b808201808211156103fb576103fb61178a565b6000600182016119715761197161178a565b5060010190565b60008261199557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103fb576103fb61178a565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a135784516001600160a01b0316835293830193918301916001016119ee565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220638abdf4c2e768b406af642f5e3ec4b35c4d76c39d0962bb9f3cd3880bceb90c64736f6c63430008130033

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.