ETH Price: $3,136.65 (-8.73%)
Gas: 8 Gwei

Token

Kamala Harris (Harris)
 

Overview

Max Total Supply

470,000,000,000 Harris

Holders

150

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jun1025.eth
Balance
645,873,535.248865970387182758 Harris

Value
$0.00
0x6c7d16882ee2894f0104288160574a9d79ca4403
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:
Harris

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-03-03
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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.
     *
     * 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);
}

contract ERC20 is Context, IERC20 {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overloaded;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        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);
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    function renounceOwnership() public virtual onlyOwner { //Change
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract Harris is ERC20,Ownable {
    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        uint256 totalSupply = 470000000000 * 10**uint(decimals());
        address LPWallet = address(0xbEf9747aE71A90Ba3148D54930061Cb3782C62AF);
        _mint(msg.sender, totalSupply);
        _transfer(msg.sender,LPWallet,totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":[{"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"renounceOwnership","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"}]

608060405234801562000010575f80fd5b50604051620027273803806200272783398181016040528101906200003691906200073e565b81818160039081620000499190620009f8565b5080600490816200005b9190620009f8565b5050506200007e62000072620000fb60201b60201c565b6200010260201b60201c565b5f6200008f620001c560201b60201c565b60ff16600a620000a0919062000c59565b646d6e2edc00620000b2919062000ca9565b90505f73bef9747ae71a90ba3148d54930061cb3782c62af9050620000de3383620001cd60201b60201c565b620000f13382846200032a60201b60201c565b5050505062000fcd565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200023e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002359062000d51565b60405180910390fd5b620002515f8383620005b460201b60201c565b8060025f82825462000264919062000d71565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620002b8919062000d71565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031e919062000dbc565b60405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200039b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003929062000e4b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200040c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004039062000edf565b60405180910390fd5b6200041f838383620005b460201b60201c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620004a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049c9062000f73565b60405180910390fd5b8181620004b3919062000f93565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000540919062000d71565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620005a6919062000dbc565b60405180910390a350505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200061a82620005d2565b810181811067ffffffffffffffff821117156200063c576200063b620005e2565b5b80604052505050565b5f62000650620005b9565b90506200065e82826200060f565b919050565b5f67ffffffffffffffff82111562000680576200067f620005e2565b5b6200068b82620005d2565b9050602081019050919050565b5f5b83811015620006b75780820151818401526020810190506200069a565b5f8484015250505050565b5f620006d8620006d28462000663565b62000645565b905082815260208101848484011115620006f757620006f6620005ce565b5b6200070484828562000698565b509392505050565b5f82601f830112620007235762000722620005ca565b5b815162000735848260208601620006c2565b91505092915050565b5f8060408385031215620007575762000756620005c2565b5b5f83015167ffffffffffffffff811115620007775762000776620005c6565b5b62000785858286016200070c565b925050602083015167ffffffffffffffff811115620007a957620007a8620005c6565b5b620007b7858286016200070c565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200081057607f821691505b602082108103620008265762000825620007cb565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200088a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200084d565b6200089686836200084d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620008e0620008da620008d484620008ae565b620008b7565b620008ae565b9050919050565b5f819050919050565b620008fb83620008c0565b620009136200090a82620008e7565b84845462000859565b825550505050565b5f90565b620009296200091b565b62000936818484620008f0565b505050565b5b818110156200095d57620009515f826200091f565b6001810190506200093c565b5050565b601f821115620009ac5762000976816200082c565b62000981846200083e565b8101602085101562000991578190505b620009a9620009a0856200083e565b8301826200093b565b50505b505050565b5f82821c905092915050565b5f620009ce5f1984600802620009b1565b1980831691505092915050565b5f620009e88383620009bd565b9150826002028217905092915050565b62000a0382620007c1565b67ffffffffffffffff81111562000a1f5762000a1e620005e2565b5b62000a2b8254620007f8565b62000a3882828562000961565b5f60209050601f83116001811462000a6e575f841562000a59578287015190505b62000a658582620009db565b86555062000ad4565b601f19841662000a7e866200082c565b5f5b8281101562000aa75784890151825560018201915060208501945060208101905062000a80565b8683101562000ac7578489015162000ac3601f891682620009bd565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000b665780860481111562000b3e5762000b3d62000adc565b5b600185161562000b4e5780820291505b808102905062000b5e8562000b09565b945062000b1e565b94509492505050565b5f8262000b80576001905062000c52565b8162000b8f575f905062000c52565b816001811462000ba8576002811462000bb35762000be9565b600191505062000c52565b60ff84111562000bc85762000bc762000adc565b5b8360020a91508482111562000be25762000be162000adc565b5b5062000c52565b5060208310610133831016604e8410600b841016171562000c235782820a90508381111562000c1d5762000c1c62000adc565b5b62000c52565b62000c32848484600162000b15565b9250905081840481111562000c4c5762000c4b62000adc565b5b81810290505b9392505050565b5f62000c6582620008ae565b915062000c7283620008ae565b925062000ca17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b6f565b905092915050565b5f62000cb582620008ae565b915062000cc283620008ae565b925082820262000cd281620008ae565b9150828204841483151762000cec5762000ceb62000adc565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000d39601f8362000cf3565b915062000d468262000d03565b602082019050919050565b5f6020820190508181035f83015262000d6a8162000d2b565b9050919050565b5f62000d7d82620008ae565b915062000d8a83620008ae565b925082820190508082111562000da55762000da462000adc565b5b92915050565b62000db681620008ae565b82525050565b5f60208201905062000dd15f83018462000dab565b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f62000e3360258362000cf3565b915062000e408262000dd7565b604082019050919050565b5f6020820190508181035f83015262000e648162000e25565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f62000ec760238362000cf3565b915062000ed48262000e6b565b604082019050919050565b5f6020820190508181035f83015262000ef88162000eb9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f62000f5b60268362000cf3565b915062000f688262000eff565b604082019050919050565b5f6020820190508181035f83015262000f8c8162000f4d565b9050919050565b5f62000f9f82620008ae565b915062000fac83620008ae565b925082820390508181111562000fc75762000fc662000adc565b5b92915050565b61174c8062000fdb5f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b6040516101019190610eef565b60405180910390f35b610124600480360381019061011f9190610fa0565b610388565b6040516101319190610ff8565b60405180910390f35b6101426103a5565b60405161014f9190611020565b60405180910390f35b610172600480360381019061016d9190611039565b6103ae565b60405161017f9190610ff8565b60405180910390f35b6101906104a9565b60405161019d91906110a4565b60405180910390f35b6101c060048036038101906101bb9190610fa0565b6104b1565b6040516101cd9190610ff8565b60405180910390f35b6101f060048036038101906101eb91906110bd565b610558565b6040516101fd9190611020565b60405180910390f35b61020e61059d565b005b610218610624565b60405161022591906110f7565b60405180910390f35b61023661064c565b6040516102439190610eef565b60405180910390f35b61026660048036038101906102619190610fa0565b6106dc565b6040516102739190610ff8565b60405180910390f35b61029660048036038101906102919190610fa0565b6107cb565b6040516102a39190610ff8565b60405180910390f35b6102c660048036038101906102c19190611110565b6107e8565b6040516102d39190611020565b60405180910390f35b6102f660048036038101906102f191906110bd565b61086a565b005b6060600380546103079061117b565b80601f01602080910402602001604051908101604052809291908181526020018280546103339061117b565b801561037e5780601f106103555761010080835404028352916020019161037e565b820191905f5260205f20905b81548152906001019060200180831161036157829003601f168201915b5050505050905090565b5f61039b610394610960565b8484610967565b6001905092915050565b5f600254905090565b5f6103ba848484610b2a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610401610960565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104779061121b565b60405180910390fd5b61049d8561048c610960565b85846104989190611266565b610967565b60019150509392505050565b5f6012905090565b5f61054e6104bd610960565b848460015f6104ca610960565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105499190611299565b610967565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105a5610960565b73ffffffffffffffffffffffffffffffffffffffff166105c3610624565b73ffffffffffffffffffffffffffffffffffffffff1614610619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061090611316565b60405180910390fd5b6106225f610d9d565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461065b9061117b565b80601f01602080910402602001604051908101604052809291908181526020018280546106879061117b565b80156106d25780601f106106a9576101008083540402835291602001916106d2565b820191905f5260205f20905b8154815290600101906020018083116106b557829003601f168201915b5050505050905090565b5f8060015f6106e9610960565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906113a4565b60405180910390fd5b6107c06107ae610960565b8585846107bb9190611266565b610967565b600191505092915050565b5f6107de6107d7610960565b8484610b2a565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610872610960565b73ffffffffffffffffffffffffffffffffffffffff16610890610624565b73ffffffffffffffffffffffffffffffffffffffff16146108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611316565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90611432565b60405180910390fd5b61095d81610d9d565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906114c0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a9061154e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b1d9190611020565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f906115dc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd9061166a565b60405180910390fd5b610c11838383610e60565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b906116f8565b60405180910390fd5b8181610ca09190611266565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d2b9190611299565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8f9190611020565b60405180910390a350505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e9c578082015181840152602081019050610e81565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610ec182610e65565b610ecb8185610e6f565b9350610edb818560208601610e7f565b610ee481610ea7565b840191505092915050565b5f6020820190508181035f830152610f078184610eb7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f3c82610f13565b9050919050565b610f4c81610f32565b8114610f56575f80fd5b50565b5f81359050610f6781610f43565b92915050565b5f819050919050565b610f7f81610f6d565b8114610f89575f80fd5b50565b5f81359050610f9a81610f76565b92915050565b5f8060408385031215610fb657610fb5610f0f565b5b5f610fc385828601610f59565b9250506020610fd485828601610f8c565b9150509250929050565b5f8115159050919050565b610ff281610fde565b82525050565b5f60208201905061100b5f830184610fe9565b92915050565b61101a81610f6d565b82525050565b5f6020820190506110335f830184611011565b92915050565b5f805f606084860312156110505761104f610f0f565b5b5f61105d86828701610f59565b935050602061106e86828701610f59565b925050604061107f86828701610f8c565b9150509250925092565b5f60ff82169050919050565b61109e81611089565b82525050565b5f6020820190506110b75f830184611095565b92915050565b5f602082840312156110d2576110d1610f0f565b5b5f6110df84828501610f59565b91505092915050565b6110f181610f32565b82525050565b5f60208201905061110a5f8301846110e8565b92915050565b5f806040838503121561112657611125610f0f565b5b5f61113385828601610f59565b925050602061114485828601610f59565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061119257607f821691505b6020821081036111a5576111a461114e565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611205602883610e6f565b9150611210826111ab565b604082019050919050565b5f6020820190508181035f830152611232816111f9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61127082610f6d565b915061127b83610f6d565b925082820390508181111561129357611292611239565b5b92915050565b5f6112a382610f6d565b91506112ae83610f6d565b92508282019050808211156112c6576112c5611239565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611300602083610e6f565b915061130b826112cc565b602082019050919050565b5f6020820190508181035f83015261132d816112f4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61138e602583610e6f565b915061139982611334565b604082019050919050565b5f6020820190508181035f8301526113bb81611382565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61141c602683610e6f565b9150611427826113c2565b604082019050919050565b5f6020820190508181035f83015261144981611410565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6114aa602483610e6f565b91506114b582611450565b604082019050919050565b5f6020820190508181035f8301526114d78161149e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611538602283610e6f565b9150611543826114de565b604082019050919050565b5f6020820190508181035f8301526115658161152c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6115c6602583610e6f565b91506115d18261156c565b604082019050919050565b5f6020820190508181035f8301526115f3816115ba565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611654602383610e6f565b915061165f826115fa565b604082019050919050565b5f6020820190508181035f83015261168181611648565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6116e2602683610e6f565b91506116ed82611688565b604082019050919050565b5f6020820190508181035f83015261170f816116d6565b905091905056fea2646970667358221220a5d9a497157e919be8ac626f31bc5646a77fd673daea714d92bb1d8e9a41235864736f6c6343000818003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d4b616d616c61204861727269730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064861727269730000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b6040516101019190610eef565b60405180910390f35b610124600480360381019061011f9190610fa0565b610388565b6040516101319190610ff8565b60405180910390f35b6101426103a5565b60405161014f9190611020565b60405180910390f35b610172600480360381019061016d9190611039565b6103ae565b60405161017f9190610ff8565b60405180910390f35b6101906104a9565b60405161019d91906110a4565b60405180910390f35b6101c060048036038101906101bb9190610fa0565b6104b1565b6040516101cd9190610ff8565b60405180910390f35b6101f060048036038101906101eb91906110bd565b610558565b6040516101fd9190611020565b60405180910390f35b61020e61059d565b005b610218610624565b60405161022591906110f7565b60405180910390f35b61023661064c565b6040516102439190610eef565b60405180910390f35b61026660048036038101906102619190610fa0565b6106dc565b6040516102739190610ff8565b60405180910390f35b61029660048036038101906102919190610fa0565b6107cb565b6040516102a39190610ff8565b60405180910390f35b6102c660048036038101906102c19190611110565b6107e8565b6040516102d39190611020565b60405180910390f35b6102f660048036038101906102f191906110bd565b61086a565b005b6060600380546103079061117b565b80601f01602080910402602001604051908101604052809291908181526020018280546103339061117b565b801561037e5780601f106103555761010080835404028352916020019161037e565b820191905f5260205f20905b81548152906001019060200180831161036157829003601f168201915b5050505050905090565b5f61039b610394610960565b8484610967565b6001905092915050565b5f600254905090565b5f6103ba848484610b2a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610401610960565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104779061121b565b60405180910390fd5b61049d8561048c610960565b85846104989190611266565b610967565b60019150509392505050565b5f6012905090565b5f61054e6104bd610960565b848460015f6104ca610960565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105499190611299565b610967565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105a5610960565b73ffffffffffffffffffffffffffffffffffffffff166105c3610624565b73ffffffffffffffffffffffffffffffffffffffff1614610619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061090611316565b60405180910390fd5b6106225f610d9d565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461065b9061117b565b80601f01602080910402602001604051908101604052809291908181526020018280546106879061117b565b80156106d25780601f106106a9576101008083540402835291602001916106d2565b820191905f5260205f20905b8154815290600101906020018083116106b557829003601f168201915b5050505050905090565b5f8060015f6106e9610960565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906113a4565b60405180910390fd5b6107c06107ae610960565b8585846107bb9190611266565b610967565b600191505092915050565b5f6107de6107d7610960565b8484610b2a565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610872610960565b73ffffffffffffffffffffffffffffffffffffffff16610890610624565b73ffffffffffffffffffffffffffffffffffffffff16146108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611316565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90611432565b60405180910390fd5b61095d81610d9d565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906114c0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a9061154e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b1d9190611020565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f906115dc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd9061166a565b60405180910390fd5b610c11838383610e60565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b906116f8565b60405180910390fd5b8181610ca09190611266565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d2b9190611299565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8f9190611020565b60405180910390a350505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e9c578082015181840152602081019050610e81565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610ec182610e65565b610ecb8185610e6f565b9350610edb818560208601610e7f565b610ee481610ea7565b840191505092915050565b5f6020820190508181035f830152610f078184610eb7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f3c82610f13565b9050919050565b610f4c81610f32565b8114610f56575f80fd5b50565b5f81359050610f6781610f43565b92915050565b5f819050919050565b610f7f81610f6d565b8114610f89575f80fd5b50565b5f81359050610f9a81610f76565b92915050565b5f8060408385031215610fb657610fb5610f0f565b5b5f610fc385828601610f59565b9250506020610fd485828601610f8c565b9150509250929050565b5f8115159050919050565b610ff281610fde565b82525050565b5f60208201905061100b5f830184610fe9565b92915050565b61101a81610f6d565b82525050565b5f6020820190506110335f830184611011565b92915050565b5f805f606084860312156110505761104f610f0f565b5b5f61105d86828701610f59565b935050602061106e86828701610f59565b925050604061107f86828701610f8c565b9150509250925092565b5f60ff82169050919050565b61109e81611089565b82525050565b5f6020820190506110b75f830184611095565b92915050565b5f602082840312156110d2576110d1610f0f565b5b5f6110df84828501610f59565b91505092915050565b6110f181610f32565b82525050565b5f60208201905061110a5f8301846110e8565b92915050565b5f806040838503121561112657611125610f0f565b5b5f61113385828601610f59565b925050602061114485828601610f59565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061119257607f821691505b6020821081036111a5576111a461114e565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611205602883610e6f565b9150611210826111ab565b604082019050919050565b5f6020820190508181035f830152611232816111f9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61127082610f6d565b915061127b83610f6d565b925082820390508181111561129357611292611239565b5b92915050565b5f6112a382610f6d565b91506112ae83610f6d565b92508282019050808211156112c6576112c5611239565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611300602083610e6f565b915061130b826112cc565b602082019050919050565b5f6020820190508181035f83015261132d816112f4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61138e602583610e6f565b915061139982611334565b604082019050919050565b5f6020820190508181035f8301526113bb81611382565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61141c602683610e6f565b9150611427826113c2565b604082019050919050565b5f6020820190508181035f83015261144981611410565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6114aa602483610e6f565b91506114b582611450565b604082019050919050565b5f6020820190508181035f8301526114d78161149e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611538602283610e6f565b9150611543826114de565b604082019050919050565b5f6020820190508181035f8301526115658161152c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6115c6602583610e6f565b91506115d18261156c565b604082019050919050565b5f6020820190508181035f8301526115f3816115ba565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611654602383610e6f565b915061165f826115fa565b604082019050919050565b5f6020820190508181035f83015261168181611648565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6116e2602683610e6f565b91506116ed82611688565b604082019050919050565b5f6020820190508181035f83015261170f816116d6565b905091905056fea2646970667358221220a5d9a497157e919be8ac626f31bc5646a77fd673daea714d92bb1d8e9a41235864736f6c63430008180033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d4b616d616c61204861727269730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064861727269730000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Kamala Harris
Arg [1] : symbol (string): Harris

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 4b616d616c612048617272697300000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4861727269730000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

14164:368:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4430:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6570:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5523:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7221:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5374:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8052:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5694:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13637:112;;;:::i;:::-;;13414:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4640:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8770:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6034:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6272:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13757:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4430:91;4475:13;4508:5;4501:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4430:91;:::o;6570:169::-;6653:4;6670:39;6679:12;:10;:12::i;:::-;6693:7;6702:6;6670:8;:39::i;:::-;6727:4;6720:11;;6570:169;;;;:::o;5523:108::-;5584:7;5611:12;;5604:19;;5523:108;:::o;7221:422::-;7327:4;7344:36;7354:6;7362:9;7373:6;7344:9;:36::i;:::-;7393:24;7420:11;:19;7432:6;7420:19;;;;;;;;;;;;;;;:33;7440:12;:10;:12::i;:::-;7420:33;;;;;;;;;;;;;;;;7393:60;;7492:6;7472:16;:26;;7464:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:57;7563:6;7571:12;:10;:12::i;:::-;7604:6;7585:16;:25;;;;:::i;:::-;7554:8;:57::i;:::-;7631:4;7624:11;;;7221:422;;;;;:::o;5374:84::-;5423:5;5448:2;5441:9;;5374:84;:::o;8052:215::-;8140:4;8157:80;8166:12;:10;:12::i;:::-;8180:7;8226:10;8189:11;:25;8201:12;:10;:12::i;:::-;8189:25;;;;;;;;;;;;;;;:34;8215:7;8189:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8157:8;:80::i;:::-;8255:4;8248:11;;8052:215;;;;:::o;5694:127::-;5768:7;5795:9;:18;5805:7;5795:18;;;;;;;;;;;;;;;;5788:25;;5694:127;;;:::o;13637:112::-;13560:12;:10;:12::i;:::-;13549:23;;:7;:5;:7::i;:::-;:23;;;13541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13711:30:::1;13738:1;13711:18;:30::i;:::-;13637:112::o:0;13414:87::-;13460:7;13487:6;;;;;;;;;;;13480:13;;13414:87;:::o;4640:95::-;4687:13;4720:7;4713:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4640:95;:::o;8770:377::-;8863:4;8880:24;8907:11;:25;8919:12;:10;:12::i;:::-;8907:25;;;;;;;;;;;;;;;:34;8933:7;8907:34;;;;;;;;;;;;;;;;8880:61;;8980:15;8960:16;:35;;8952:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9048:67;9057:12;:10;:12::i;:::-;9071:7;9099:15;9080:16;:34;;;;:::i;:::-;9048:8;:67::i;:::-;9135:4;9128:11;;;8770:377;;;;:::o;6034:175::-;6120:4;6137:42;6147:12;:10;:12::i;:::-;6161:9;6172:6;6137:9;:42::i;:::-;6197:4;6190:11;;6034:175;;;;:::o;6272:151::-;6361:7;6388:11;:18;6400:5;6388:18;;;;;;;;;;;;;;;:27;6407:7;6388:27;;;;;;;;;;;;;;;;6381:34;;6272:151;;;;:::o;13757:201::-;13560:12;:10;:12::i;:::-;13549:23;;:7;:5;:7::i;:::-;:23;;;13541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13866:1:::1;13846:22;;:8;:22;;::::0;13838:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;13922:28;13941:8;13922:18;:28::i;:::-;13757:201:::0;:::o;600:98::-;653:7;680:10;673:17;;600:98;:::o;12126:346::-;12245:1;12228:19;;:5;:19;;;12220:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12326:1;12307:21;;:7;:21;;;12299:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12410:6;12380:11;:18;12392:5;12380:18;;;;;;;;;;;;;;;:27;12399:7;12380:27;;;;;;;;;;;;;;;:36;;;;12448:7;12432:32;;12441:5;12432:32;;;12457:6;12432:32;;;;;;:::i;:::-;;;;;;;;12126:346;;;:::o;9637:604::-;9761:1;9743:20;;:6;:20;;;9735:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;9845:1;9824:23;;:9;:23;;;9816:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9900:47;9921:6;9929:9;9940:6;9900:20;:47::i;:::-;9960:21;9984:9;:17;9994:6;9984:17;;;;;;;;;;;;;;;;9960:41;;10037:6;10020:13;:23;;10012:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10133:6;10117:13;:22;;;;:::i;:::-;10097:9;:17;10107:6;10097:17;;;;;;;;;;;;;;;:42;;;;10174:6;10150:9;:20;10160:9;10150:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10215:9;10198:35;;10207:6;10198:35;;;10226:6;10198:35;;;;;;:::i;:::-;;;;;;;;9724:517;9637:604;;;:::o;13966:191::-;14040:16;14059:6;;;;;;;;;;;14040:25;;14085:8;14076:6;;:17;;;;;;;;;;;;;;;;;;14140:8;14109:40;;14130:8;14109:40;;;;;;;;;;;;14029:128;13966:191;:::o;13075:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:227::-;6672:34;6668:1;6660:6;6656:14;6649:58;6741:10;6736:2;6728:6;6724:15;6717:35;6532:227;:::o;6765:366::-;6907:3;6928:67;6992:2;6987:3;6928:67;:::i;:::-;6921:74;;7004:93;7093:3;7004:93;:::i;:::-;7122:2;7117:3;7113:12;7106:19;;6765:366;;;:::o;7137:419::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7390:9;7384:4;7380:20;7376:1;7365:9;7361:17;7354:47;7418:131;7544:4;7418:131;:::i;:::-;7410:139;;7137:419;;;:::o;7562:180::-;7610:77;7607:1;7600:88;7707:4;7704:1;7697:15;7731:4;7728:1;7721:15;7748:194;7788:4;7808:20;7826:1;7808:20;:::i;:::-;7803:25;;7842:20;7860:1;7842:20;:::i;:::-;7837:25;;7886:1;7883;7879:9;7871:17;;7910:1;7904:4;7901:11;7898:37;;;7915:18;;:::i;:::-;7898:37;7748:194;;;;:::o;7948:191::-;7988:3;8007:20;8025:1;8007:20;:::i;:::-;8002:25;;8041:20;8059:1;8041:20;:::i;:::-;8036:25;;8084:1;8081;8077:9;8070:16;;8105:3;8102:1;8099:10;8096:36;;;8112:18;;:::i;:::-;8096:36;7948:191;;;;:::o;8145:182::-;8285:34;8281:1;8273:6;8269:14;8262:58;8145:182;:::o;8333:366::-;8475:3;8496:67;8560:2;8555:3;8496:67;:::i;:::-;8489:74;;8572:93;8661:3;8572:93;:::i;:::-;8690:2;8685:3;8681:12;8674:19;;8333:366;;;:::o;8705:419::-;8871:4;8909:2;8898:9;8894:18;8886:26;;8958:9;8952:4;8948:20;8944:1;8933:9;8929:17;8922:47;8986:131;9112:4;8986:131;:::i;:::-;8978:139;;8705:419;;;:::o;9130:224::-;9270:34;9266:1;9258:6;9254:14;9247:58;9339:7;9334:2;9326:6;9322:15;9315:32;9130:224;:::o;9360:366::-;9502:3;9523:67;9587:2;9582:3;9523:67;:::i;:::-;9516:74;;9599:93;9688:3;9599:93;:::i;:::-;9717:2;9712:3;9708:12;9701:19;;9360:366;;;:::o;9732:419::-;9898:4;9936:2;9925:9;9921:18;9913:26;;9985:9;9979:4;9975:20;9971:1;9960:9;9956:17;9949:47;10013:131;10139:4;10013:131;:::i;:::-;10005:139;;9732:419;;;:::o;10157:225::-;10297:34;10293:1;10285:6;10281:14;10274:58;10366:8;10361:2;10353:6;10349:15;10342:33;10157:225;:::o;10388:366::-;10530:3;10551:67;10615:2;10610:3;10551:67;:::i;:::-;10544:74;;10627:93;10716:3;10627:93;:::i;:::-;10745:2;10740:3;10736:12;10729:19;;10388:366;;;:::o;10760:419::-;10926:4;10964:2;10953:9;10949:18;10941:26;;11013:9;11007:4;11003:20;10999:1;10988:9;10984:17;10977:47;11041:131;11167:4;11041:131;:::i;:::-;11033:139;;10760:419;;;:::o;11185:223::-;11325:34;11321:1;11313:6;11309:14;11302:58;11394:6;11389:2;11381:6;11377:15;11370:31;11185:223;:::o;11414:366::-;11556:3;11577:67;11641:2;11636:3;11577:67;:::i;:::-;11570:74;;11653:93;11742:3;11653:93;:::i;:::-;11771:2;11766:3;11762:12;11755:19;;11414:366;;;:::o;11786:419::-;11952:4;11990:2;11979:9;11975:18;11967:26;;12039:9;12033:4;12029:20;12025:1;12014:9;12010:17;12003:47;12067:131;12193:4;12067:131;:::i;:::-;12059:139;;11786:419;;;:::o;12211:221::-;12351:34;12347:1;12339:6;12335:14;12328:58;12420:4;12415:2;12407:6;12403:15;12396:29;12211:221;:::o;12438:366::-;12580:3;12601:67;12665:2;12660:3;12601:67;:::i;:::-;12594:74;;12677:93;12766:3;12677:93;:::i;:::-;12795:2;12790:3;12786:12;12779:19;;12438:366;;;:::o;12810:419::-;12976:4;13014:2;13003:9;12999:18;12991:26;;13063:9;13057:4;13053:20;13049:1;13038:9;13034:17;13027:47;13091:131;13217:4;13091:131;:::i;:::-;13083:139;;12810:419;;;:::o;13235:224::-;13375:34;13371:1;13363:6;13359:14;13352:58;13444:7;13439:2;13431:6;13427:15;13420:32;13235:224;:::o;13465:366::-;13607:3;13628:67;13692:2;13687:3;13628:67;:::i;:::-;13621:74;;13704:93;13793:3;13704:93;:::i;:::-;13822:2;13817:3;13813:12;13806:19;;13465:366;;;:::o;13837:419::-;14003:4;14041:2;14030:9;14026:18;14018:26;;14090:9;14084:4;14080:20;14076:1;14065:9;14061:17;14054:47;14118:131;14244:4;14118:131;:::i;:::-;14110:139;;13837:419;;;:::o;14262:222::-;14402:34;14398:1;14390:6;14386:14;14379:58;14471:5;14466:2;14458:6;14454:15;14447:30;14262:222;:::o;14490:366::-;14632:3;14653:67;14717:2;14712:3;14653:67;:::i;:::-;14646:74;;14729:93;14818:3;14729:93;:::i;:::-;14847:2;14842:3;14838:12;14831:19;;14490:366;;;:::o;14862:419::-;15028:4;15066:2;15055:9;15051:18;15043:26;;15115:9;15109:4;15105:20;15101:1;15090:9;15086:17;15079:47;15143:131;15269:4;15143:131;:::i;:::-;15135:139;;14862:419;;;:::o;15287:225::-;15427:34;15423:1;15415:6;15411:14;15404:58;15496:8;15491:2;15483:6;15479:15;15472:33;15287:225;:::o;15518:366::-;15660:3;15681:67;15745:2;15740:3;15681:67;:::i;:::-;15674:74;;15757:93;15846:3;15757:93;:::i;:::-;15875:2;15870:3;15866:12;15859:19;;15518:366;;;:::o;15890:419::-;16056:4;16094:2;16083:9;16079:18;16071:26;;16143:9;16137:4;16133:20;16129:1;16118:9;16114:17;16107:47;16171:131;16297:4;16171:131;:::i;:::-;16163:139;;15890:419;;;:::o

Swarm Source

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