ETH Price: $2,711.93 (+1.61%)
Gas: 0.71 Gwei

Token

Silks - Payments V1 ()
 

Overview

Max Total Supply

0 Silks - Payments V1

Holders

0

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 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:
SilksPaymentsV1

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.2;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract SilksPaymentsV1 is Ownable {
    struct Sale {
        string saleId;
        uint price;
        bool paused;
        uint maxPerTx;
        uint maxPerWallet;
        bool valid;
    }
    
    struct Receipt {
        address buyer;
        string saleId;
        uint quantity;
        uint pricePer;
        uint total;
    }
    
    event Purchase(uint receiptId);

    mapping(uint => string) public SaleIndexToId;
    mapping(uint => address) public ReceiptToBuyer;

    mapping(string => Sale) internal sales;
    mapping(uint => Receipt) internal receipts;
    mapping(string => uint) internal numPurchases;
    mapping(address => mapping(string => uint)) internal numPurchasesByAddress;
    
    uint public saleCount;
    uint public receiptCount;
    
    using SafeMath for uint;
    
    string public name = "Silks - Payments V1";
    
    constructor(){}
    
    function getSale(
        string calldata _saleId
    )
    public
    view
    returns (
        uint price,
        bool paused,
        uint maxPerTx,
        uint maxPerWallet,
        bool valid
    ) {
        return (
        sales[_saleId].price,
        sales[_saleId].paused,
        sales[_saleId].maxPerTx,
        sales[_saleId].maxPerWallet,
        sales[_saleId].valid
        );
    }
    
    function setSale(
        string calldata _saleId,
        uint _price,
        bool _paused,
        uint _maxPerTx,
        uint _maxPerWallet,
        bool _valid
    )
    external
    onlyOwner
    {
        if (!sales[_saleId].valid){
            SaleIndexToId[saleCount] = _saleId;
            saleCount++;
        }
        
        sales[_saleId] = Sale(
            _saleId,
            _price,
            _paused,
            _maxPerTx,
            _maxPerWallet,
            _valid
        );
    }
    
    function getReceipt(
        uint _receiptId
    )
    public
    view
    returns (
        address buyer,
        string memory saleId,
        uint quantity,
        uint pricePer,
        uint total
    ) {
        return (
        receipts[_receiptId].buyer,
        receipts[_receiptId].saleId,
        receipts[_receiptId].quantity,
        receipts[_receiptId].pricePer,
        receipts[_receiptId].total
        );
    }
    
    function purchase(
        string calldata _saleId,
        uint _quantity
    )
    public
    payable
    returns(uint)
    {
        (uint price, bool paused, uint maxPerTx, uint maxPerWallet, bool valid) = getSale(_saleId);
        require(
            valid && !paused,
            "NOT_VALID_OR_PAUSED"
        );
        require(
            msg.value % price == 0 &&
            ((msg.value / price) * price == msg.value),
            "INV_ETH_TOTAL"
        );
        require(
            (msg.value / price) == _quantity,
            "INV_QUANTITY"
        );
        require(
            maxPerTx == 0 || (msg.value / price) <= maxPerTx,
            "PER_TX_ERROR"
        );
        require(
            maxPerWallet == 0 || (_quantity + numPurchasesByAddress[msg.sender][_saleId]) <= maxPerWallet,
            "PER_WALLET_ERROR"
        );

        numPurchases[_saleId]++;
        
        receiptCount++;
        receipts[receiptCount] = Receipt(
            msg.sender,
            _saleId,
            _quantity,
            price,
            msg.value);
        ReceiptToBuyer[receiptCount] = msg.sender;
        
        emit Purchase(receiptCount);
        
        return receiptCount;
    }
    
    // Get amount of 1155 minted
    function getNumPurchasesForSale(
        string calldata _saleId
    )
    view
    public
    returns(uint)
    {
        return numPurchases[_saleId];
    }
    
    function getNumPurchasesByBuyer(
        address buyer,
        string calldata _saleId
    )
    view
    public
    returns(uint)
    {
        return numPurchasesByAddress[buyer][_saleId];
    }
    
    // Basic withdrawal of funds function in order to transfer ETH out of the smart contract
    function withdrawFunds()
    public
    onlyOwner
    {
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 2 of 4 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 4 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 4 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"uint256","name":"receiptId","type":"uint256"}],"name":"Purchase","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ReceiptToBuyer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"SaleIndexToId","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"buyer","type":"address"},{"internalType":"string","name":"_saleId","type":"string"}],"name":"getNumPurchasesByBuyer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_saleId","type":"string"}],"name":"getNumPurchasesForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_receiptId","type":"uint256"}],"name":"getReceipt","outputs":[{"internalType":"address","name":"buyer","type":"address"},{"internalType":"string","name":"saleId","type":"string"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"pricePer","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_saleId","type":"string"}],"name":"getSale","outputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"paused","type":"bool"},{"internalType":"uint256","name":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"bool","name":"valid","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_saleId","type":"string"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"purchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"receiptCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_saleId","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"bool","name":"_paused","type":"bool"},{"internalType":"uint256","name":"_maxPerTx","type":"uint256"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"},{"internalType":"bool","name":"_valid","type":"bool"}],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280601381526020017f53696c6b73202d205061796d656e747320563100000000000000000000000000815250600990805190602001906200005192919062000152565b503480156200005f57600080fd5b5062000080620000746200008660201b60201c565b6200008e60201b60201c565b62000266565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001609062000231565b90600052602060002090601f016020900481019282620001845760008555620001d0565b82601f106200019f57805160ff1916838001178555620001d0565b82800160010185558215620001d0579182015b82811115620001cf578251825591602001919060010190620001b2565b5b509050620001df9190620001e3565b5090565b5b80821115620001fe576000816000905550600101620001e4565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200024a57607f821691505b60208210810362000260576200025f62000202565b5b50919050565b611c1480620002766000396000f3fe6080604052600436106100e85760003560e01c80638da5cb5b1161008a578063b63e6ac311610059578063b63e6ac3146102db578063c62753591461031c578063cc57854014610359578063f2fde38b14610396576100e8565b80638da5cb5b14610218578063a1e89aec14610243578063aa38e38c1461026e578063ad26a90b1461029e576100e8565b806324600fc3116100c657806324600fc31461017e5780632de04e0314610195578063715018a6146101d65780637f038f3c146101ed576100e8565b806306fdde03146100ed578063097013321461011857806314302bc414610155575b600080fd5b3480156100f957600080fd5b506101026103bf565b60405161010f91906111d1565b60405180910390f35b34801561012457600080fd5b5061013f600480360381019061013a9190611233565b61044d565b60405161014c91906111d1565b60405180910390f35b34801561016157600080fd5b5061017c600480360381019061017791906112fd565b6104ed565b005b34801561018a57600080fd5b50610193610684565b005b3480156101a157600080fd5b506101bc60048036038101906101b791906113ac565b6106d5565b6040516101cd959493929190611417565b60405180910390f35b3480156101e257600080fd5b506101eb6107bf565b005b3480156101f957600080fd5b506102026107d3565b60405161020f919061146a565b60405180910390f35b34801561022457600080fd5b5061022d6107d9565b60405161023a91906114c6565b60405180910390f35b34801561024f57600080fd5b50610258610802565b604051610265919061146a565b60405180910390f35b610288600480360381019061028391906114e1565b610808565b604051610295919061146a565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c0919061156d565b610c41565b6040516102d2919061146a565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190611233565b610caa565b6040516103139594939291906115cd565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906113ac565b610de4565b604051610350919061146a565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190611233565b610e0f565b60405161038d91906114c6565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190611627565b610e42565b005b600980546103cc90611683565b80601f01602080910402602001604051908101604052809291908181526020018280546103f890611683565b80156104455780601f1061041a57610100808354040283529160200191610445565b820191906000526020600020905b81548152906001019060200180831161042857829003601f168201915b505050505081565b6001602052806000526040600020600091509050805461046c90611683565b80601f016020809104026020016040519081016040528092919081815260200182805461049890611683565b80156104e55780601f106104ba576101008083540402835291602001916104e5565b820191906000526020600020905b8154815290600101906020018083116104c857829003601f168201915b505050505081565b6104f5610ec5565b600387876040516105079291906116f3565b908152602001604051809103902060050160009054906101000a900460ff16610568578686600160006007548152602001908152602001600020919061054e92919061100f565b50600760008154809291906105629061173b565b91905055505b6040518060c0016040528088888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505081526020018681526020018515158152602001848152602001838152602001821515815250600388886040516105ef9291906116f3565b90815260200160405180910390206000820151816000019080519060200190610619929190611095565b506020820151816001015560408201518160020160006101000a81548160ff021916908315150217905550606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555090505050505050505050565b61068c610ec5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156106d2573d6000803e3d6000fd5b50565b6000806000806000600387876040516106ef9291906116f3565b908152602001604051809103902060010154600388886040516107139291906116f3565b908152602001604051809103902060020160009054906101000a900460ff16600389896040516107449291906116f3565b90815260200160405180910390206003015460038a8a6040516107689291906116f3565b90815260200160405180910390206004015460038b8b60405161078c9291906116f3565b908152602001604051809103902060050160009054906101000a900460ff16945094509450945094509295509295909350565b6107c7610ec5565b6107d16000610f43565b565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b60008060008060008061081b89896106d5565b94509450945094509450808015610830575083155b61086f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610866906117cf565b60405180910390fd5b6000853461087d919061181e565b14801561089f575034858634610893919061184f565b61089d9190611880565b145b6108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590611926565b60405180910390fd5b8685346108eb919061184f565b1461092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092290611992565b60405180910390fd5b60008314806109455750828534610942919061184f565b11155b610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b906119fe565b60405180910390fd5b60008214806109fb575081600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208a8a6040516109de9291906116f3565b908152602001604051809103902054886109f89190611a1e565b11155b610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190611ac0565b60405180910390fd5b60058989604051610a4c9291906116f3565b90815260200160405180910390206000815480929190610a6b9061173b565b919050555060086000815480929190610a839061173b565b91905055506040518060a001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018a8a8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505081526020018881526020018681526020013481525060046000600854815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001019080519060200190610b81929190611095565b506040820151816002015560608201518160030155608082015181600401559050503360026000600854815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe2aeb2ae0272c38a449d3cebb58f6894790a45bfb16f73a8e1761acb1e312053600854604051610c28919061146a565b60405180910390a1600854955050505050509392505050565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208383604051610c929291906116f3565b90815260200160405180910390205490509392505050565b6000606060008060006004600087815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600460008881526020019081526020016000206001016004600089815260200190815260200160002060020154600460008a815260200190815260200160002060030154600460008b815260200190815260200160002060040154838054610d5190611683565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7d90611683565b8015610dca5780601f10610d9f57610100808354040283529160200191610dca565b820191906000526020600020905b815481529060010190602001808311610dad57829003601f168201915b505050505093509450945094509450945091939590929450565b600060058383604051610df89291906116f3565b908152602001604051809103902054905092915050565b60026020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e4a610ec5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090611b52565b60405180910390fd5b610ec281610f43565b50565b610ecd611007565b73ffffffffffffffffffffffffffffffffffffffff16610eeb6107d9565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611bbe565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b82805461101b90611683565b90600052602060002090601f01602090048101928261103d5760008555611084565b82601f1061105657803560ff1916838001178555611084565b82800160010185558215611084579182015b82811115611083578235825591602001919060010190611068565b5b509050611091919061111b565b5090565b8280546110a190611683565b90600052602060002090601f0160209004810192826110c3576000855561110a565b82601f106110dc57805160ff191683800117855561110a565b8280016001018555821561110a579182015b828111156111095782518255916020019190600101906110ee565b5b509050611117919061111b565b5090565b5b8082111561113457600081600090555060010161111c565b5090565b600081519050919050565b600082825260208201905092915050565b60005b83811015611172578082015181840152602081019050611157565b83811115611181576000848401525b50505050565b6000601f19601f8301169050919050565b60006111a382611138565b6111ad8185611143565b93506111bd818560208601611154565b6111c681611187565b840191505092915050565b600060208201905081810360008301526111eb8184611198565b905092915050565b600080fd5b600080fd5b6000819050919050565b611210816111fd565b811461121b57600080fd5b50565b60008135905061122d81611207565b92915050565b600060208284031215611249576112486111f3565b5b60006112578482850161121e565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261128557611284611260565b5b8235905067ffffffffffffffff8111156112a2576112a1611265565b5b6020830191508360018202830111156112be576112bd61126a565b5b9250929050565b60008115159050919050565b6112da816112c5565b81146112e557600080fd5b50565b6000813590506112f7816112d1565b92915050565b600080600080600080600060c0888a03121561131c5761131b6111f3565b5b600088013567ffffffffffffffff81111561133a576113396111f8565b5b6113468a828b0161126f565b975097505060206113598a828b0161121e565b955050604061136a8a828b016112e8565b945050606061137b8a828b0161121e565b935050608061138c8a828b0161121e565b92505060a061139d8a828b016112e8565b91505092959891949750929550565b600080602083850312156113c3576113c26111f3565b5b600083013567ffffffffffffffff8111156113e1576113e06111f8565b5b6113ed8582860161126f565b92509250509250929050565b611402816111fd565b82525050565b611411816112c5565b82525050565b600060a08201905061142c60008301886113f9565b6114396020830187611408565b61144660408301866113f9565b61145360608301856113f9565b6114606080830184611408565b9695505050505050565b600060208201905061147f60008301846113f9565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114b082611485565b9050919050565b6114c0816114a5565b82525050565b60006020820190506114db60008301846114b7565b92915050565b6000806000604084860312156114fa576114f96111f3565b5b600084013567ffffffffffffffff811115611518576115176111f8565b5b6115248682870161126f565b935093505060206115378682870161121e565b9150509250925092565b61154a816114a5565b811461155557600080fd5b50565b60008135905061156781611541565b92915050565b600080600060408486031215611586576115856111f3565b5b600061159486828701611558565b935050602084013567ffffffffffffffff8111156115b5576115b46111f8565b5b6115c18682870161126f565b92509250509250925092565b600060a0820190506115e260008301886114b7565b81810360208301526115f48187611198565b905061160360408301866113f9565b61161060608301856113f9565b61161d60808301846113f9565b9695505050505050565b60006020828403121561163d5761163c6111f3565b5b600061164b84828501611558565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061169b57607f821691505b6020821081036116ae576116ad611654565b5b50919050565b600081905092915050565b82818337600083830152505050565b60006116da83856116b4565b93506116e78385846116bf565b82840190509392505050565b60006117008284866116ce565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611746826111fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036117785761177761170c565b5b600182019050919050565b7f4e4f545f56414c49445f4f525f50415553454400000000000000000000000000600082015250565b60006117b9601383611143565b91506117c482611783565b602082019050919050565b600060208201905081810360008301526117e8816117ac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611829826111fd565b9150611834836111fd565b925082611844576118436117ef565b5b828206905092915050565b600061185a826111fd565b9150611865836111fd565b925082611875576118746117ef565b5b828204905092915050565b600061188b826111fd565b9150611896836111fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156118cf576118ce61170c565b5b828202905092915050565b7f494e565f4554485f544f54414c00000000000000000000000000000000000000600082015250565b6000611910600d83611143565b915061191b826118da565b602082019050919050565b6000602082019050818103600083015261193f81611903565b9050919050565b7f494e565f5155414e544954590000000000000000000000000000000000000000600082015250565b600061197c600c83611143565b915061198782611946565b602082019050919050565b600060208201905081810360008301526119ab8161196f565b9050919050565b7f5045525f54585f4552524f520000000000000000000000000000000000000000600082015250565b60006119e8600c83611143565b91506119f3826119b2565b602082019050919050565b60006020820190508181036000830152611a17816119db565b9050919050565b6000611a29826111fd565b9150611a34836111fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a6957611a6861170c565b5b828201905092915050565b7f5045525f57414c4c45545f4552524f5200000000000000000000000000000000600082015250565b6000611aaa601083611143565b9150611ab582611a74565b602082019050919050565b60006020820190508181036000830152611ad981611a9d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b3c602683611143565b9150611b4782611ae0565b604082019050919050565b60006020820190508181036000830152611b6b81611b2f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ba8602083611143565b9150611bb382611b72565b602082019050919050565b60006020820190508181036000830152611bd781611b9b565b905091905056fea2646970667358221220f74ab9fa499bdc699814ac1405f3643133525d38de8ebf24f6031fd1d43a1ca464736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106100e85760003560e01c80638da5cb5b1161008a578063b63e6ac311610059578063b63e6ac3146102db578063c62753591461031c578063cc57854014610359578063f2fde38b14610396576100e8565b80638da5cb5b14610218578063a1e89aec14610243578063aa38e38c1461026e578063ad26a90b1461029e576100e8565b806324600fc3116100c657806324600fc31461017e5780632de04e0314610195578063715018a6146101d65780637f038f3c146101ed576100e8565b806306fdde03146100ed578063097013321461011857806314302bc414610155575b600080fd5b3480156100f957600080fd5b506101026103bf565b60405161010f91906111d1565b60405180910390f35b34801561012457600080fd5b5061013f600480360381019061013a9190611233565b61044d565b60405161014c91906111d1565b60405180910390f35b34801561016157600080fd5b5061017c600480360381019061017791906112fd565b6104ed565b005b34801561018a57600080fd5b50610193610684565b005b3480156101a157600080fd5b506101bc60048036038101906101b791906113ac565b6106d5565b6040516101cd959493929190611417565b60405180910390f35b3480156101e257600080fd5b506101eb6107bf565b005b3480156101f957600080fd5b506102026107d3565b60405161020f919061146a565b60405180910390f35b34801561022457600080fd5b5061022d6107d9565b60405161023a91906114c6565b60405180910390f35b34801561024f57600080fd5b50610258610802565b604051610265919061146a565b60405180910390f35b610288600480360381019061028391906114e1565b610808565b604051610295919061146a565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c0919061156d565b610c41565b6040516102d2919061146a565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190611233565b610caa565b6040516103139594939291906115cd565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906113ac565b610de4565b604051610350919061146a565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190611233565b610e0f565b60405161038d91906114c6565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190611627565b610e42565b005b600980546103cc90611683565b80601f01602080910402602001604051908101604052809291908181526020018280546103f890611683565b80156104455780601f1061041a57610100808354040283529160200191610445565b820191906000526020600020905b81548152906001019060200180831161042857829003601f168201915b505050505081565b6001602052806000526040600020600091509050805461046c90611683565b80601f016020809104026020016040519081016040528092919081815260200182805461049890611683565b80156104e55780601f106104ba576101008083540402835291602001916104e5565b820191906000526020600020905b8154815290600101906020018083116104c857829003601f168201915b505050505081565b6104f5610ec5565b600387876040516105079291906116f3565b908152602001604051809103902060050160009054906101000a900460ff16610568578686600160006007548152602001908152602001600020919061054e92919061100f565b50600760008154809291906105629061173b565b91905055505b6040518060c0016040528088888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505081526020018681526020018515158152602001848152602001838152602001821515815250600388886040516105ef9291906116f3565b90815260200160405180910390206000820151816000019080519060200190610619929190611095565b506020820151816001015560408201518160020160006101000a81548160ff021916908315150217905550606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555090505050505050505050565b61068c610ec5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156106d2573d6000803e3d6000fd5b50565b6000806000806000600387876040516106ef9291906116f3565b908152602001604051809103902060010154600388886040516107139291906116f3565b908152602001604051809103902060020160009054906101000a900460ff16600389896040516107449291906116f3565b90815260200160405180910390206003015460038a8a6040516107689291906116f3565b90815260200160405180910390206004015460038b8b60405161078c9291906116f3565b908152602001604051809103902060050160009054906101000a900460ff16945094509450945094509295509295909350565b6107c7610ec5565b6107d16000610f43565b565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b60008060008060008061081b89896106d5565b94509450945094509450808015610830575083155b61086f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610866906117cf565b60405180910390fd5b6000853461087d919061181e565b14801561089f575034858634610893919061184f565b61089d9190611880565b145b6108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590611926565b60405180910390fd5b8685346108eb919061184f565b1461092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092290611992565b60405180910390fd5b60008314806109455750828534610942919061184f565b11155b610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b906119fe565b60405180910390fd5b60008214806109fb575081600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208a8a6040516109de9291906116f3565b908152602001604051809103902054886109f89190611a1e565b11155b610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190611ac0565b60405180910390fd5b60058989604051610a4c9291906116f3565b90815260200160405180910390206000815480929190610a6b9061173b565b919050555060086000815480929190610a839061173b565b91905055506040518060a001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018a8a8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505081526020018881526020018681526020013481525060046000600854815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001019080519060200190610b81929190611095565b506040820151816002015560608201518160030155608082015181600401559050503360026000600854815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe2aeb2ae0272c38a449d3cebb58f6894790a45bfb16f73a8e1761acb1e312053600854604051610c28919061146a565b60405180910390a1600854955050505050509392505050565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208383604051610c929291906116f3565b90815260200160405180910390205490509392505050565b6000606060008060006004600087815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600460008881526020019081526020016000206001016004600089815260200190815260200160002060020154600460008a815260200190815260200160002060030154600460008b815260200190815260200160002060040154838054610d5190611683565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7d90611683565b8015610dca5780601f10610d9f57610100808354040283529160200191610dca565b820191906000526020600020905b815481529060010190602001808311610dad57829003601f168201915b505050505093509450945094509450945091939590929450565b600060058383604051610df89291906116f3565b908152602001604051809103902054905092915050565b60026020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e4a610ec5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090611b52565b60405180910390fd5b610ec281610f43565b50565b610ecd611007565b73ffffffffffffffffffffffffffffffffffffffff16610eeb6107d9565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611bbe565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b82805461101b90611683565b90600052602060002090601f01602090048101928261103d5760008555611084565b82601f1061105657803560ff1916838001178555611084565b82800160010185558215611084579182015b82811115611083578235825591602001919060010190611068565b5b509050611091919061111b565b5090565b8280546110a190611683565b90600052602060002090601f0160209004810192826110c3576000855561110a565b82601f106110dc57805160ff191683800117855561110a565b8280016001018555821561110a579182015b828111156111095782518255916020019190600101906110ee565b5b509050611117919061111b565b5090565b5b8082111561113457600081600090555060010161111c565b5090565b600081519050919050565b600082825260208201905092915050565b60005b83811015611172578082015181840152602081019050611157565b83811115611181576000848401525b50505050565b6000601f19601f8301169050919050565b60006111a382611138565b6111ad8185611143565b93506111bd818560208601611154565b6111c681611187565b840191505092915050565b600060208201905081810360008301526111eb8184611198565b905092915050565b600080fd5b600080fd5b6000819050919050565b611210816111fd565b811461121b57600080fd5b50565b60008135905061122d81611207565b92915050565b600060208284031215611249576112486111f3565b5b60006112578482850161121e565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261128557611284611260565b5b8235905067ffffffffffffffff8111156112a2576112a1611265565b5b6020830191508360018202830111156112be576112bd61126a565b5b9250929050565b60008115159050919050565b6112da816112c5565b81146112e557600080fd5b50565b6000813590506112f7816112d1565b92915050565b600080600080600080600060c0888a03121561131c5761131b6111f3565b5b600088013567ffffffffffffffff81111561133a576113396111f8565b5b6113468a828b0161126f565b975097505060206113598a828b0161121e565b955050604061136a8a828b016112e8565b945050606061137b8a828b0161121e565b935050608061138c8a828b0161121e565b92505060a061139d8a828b016112e8565b91505092959891949750929550565b600080602083850312156113c3576113c26111f3565b5b600083013567ffffffffffffffff8111156113e1576113e06111f8565b5b6113ed8582860161126f565b92509250509250929050565b611402816111fd565b82525050565b611411816112c5565b82525050565b600060a08201905061142c60008301886113f9565b6114396020830187611408565b61144660408301866113f9565b61145360608301856113f9565b6114606080830184611408565b9695505050505050565b600060208201905061147f60008301846113f9565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114b082611485565b9050919050565b6114c0816114a5565b82525050565b60006020820190506114db60008301846114b7565b92915050565b6000806000604084860312156114fa576114f96111f3565b5b600084013567ffffffffffffffff811115611518576115176111f8565b5b6115248682870161126f565b935093505060206115378682870161121e565b9150509250925092565b61154a816114a5565b811461155557600080fd5b50565b60008135905061156781611541565b92915050565b600080600060408486031215611586576115856111f3565b5b600061159486828701611558565b935050602084013567ffffffffffffffff8111156115b5576115b46111f8565b5b6115c18682870161126f565b92509250509250925092565b600060a0820190506115e260008301886114b7565b81810360208301526115f48187611198565b905061160360408301866113f9565b61161060608301856113f9565b61161d60808301846113f9565b9695505050505050565b60006020828403121561163d5761163c6111f3565b5b600061164b84828501611558565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061169b57607f821691505b6020821081036116ae576116ad611654565b5b50919050565b600081905092915050565b82818337600083830152505050565b60006116da83856116b4565b93506116e78385846116bf565b82840190509392505050565b60006117008284866116ce565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611746826111fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036117785761177761170c565b5b600182019050919050565b7f4e4f545f56414c49445f4f525f50415553454400000000000000000000000000600082015250565b60006117b9601383611143565b91506117c482611783565b602082019050919050565b600060208201905081810360008301526117e8816117ac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611829826111fd565b9150611834836111fd565b925082611844576118436117ef565b5b828206905092915050565b600061185a826111fd565b9150611865836111fd565b925082611875576118746117ef565b5b828204905092915050565b600061188b826111fd565b9150611896836111fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156118cf576118ce61170c565b5b828202905092915050565b7f494e565f4554485f544f54414c00000000000000000000000000000000000000600082015250565b6000611910600d83611143565b915061191b826118da565b602082019050919050565b6000602082019050818103600083015261193f81611903565b9050919050565b7f494e565f5155414e544954590000000000000000000000000000000000000000600082015250565b600061197c600c83611143565b915061198782611946565b602082019050919050565b600060208201905081810360008301526119ab8161196f565b9050919050565b7f5045525f54585f4552524f520000000000000000000000000000000000000000600082015250565b60006119e8600c83611143565b91506119f3826119b2565b602082019050919050565b60006020820190508181036000830152611a17816119db565b9050919050565b6000611a29826111fd565b9150611a34836111fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a6957611a6861170c565b5b828201905092915050565b7f5045525f57414c4c45545f4552524f5200000000000000000000000000000000600082015250565b6000611aaa601083611143565b9150611ab582611a74565b602082019050919050565b60006020820190508181036000830152611ad981611a9d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b3c602683611143565b9150611b4782611ae0565b604082019050919050565b60006020820190508181036000830152611b6b81611b2f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ba8602083611143565b9150611bb382611b72565b602082019050919050565b60006020820190508181036000830152611bd781611b9b565b905091905056fea2646970667358221220f74ab9fa499bdc699814ac1405f3643133525d38de8ebf24f6031fd1d43a1ca464736f6c634300080e0033

Loading...
Loading
Loading...
Loading
[ 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.