ETH Price: $3,506.22 (+2.49%)
Gas: 4 Gwei

Token

Hidden Global ($HDDN)
 

Overview

Max Total Supply

281,113,000 $HDDN

Holders

69 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
66,000 $HDDN

Value
$0.00
0x6fc19FfA9147d9444ef08355d5B1eaC7cEAB6eab
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Hidden Global is an interactive Blockchain based travel platform that connects people from all over the world to destinations called hidden paradises, a platform where all agencies, land and maritime companies, guides and travelers, can coexist and create a fair and healthy market.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HiddenGlobal

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-01
*/

// SPDX-License-Identifier: MIT
/**
██   ██ ██ ██████  ██████  ███████ ███    ██      ██████  ██       ██████  ██████   █████  ██      
██   ██ ██ ██   ██ ██   ██ ██      ████   ██     ██       ██      ██    ██ ██   ██ ██   ██ ██      
███████ ██ ██   ██ ██   ██ █████   ██ ██  ██     ██   ███ ██      ██    ██ ██████  ███████ ██      
██   ██ ██ ██   ██ ██   ██ ██      ██  ██ ██     ██    ██ ██      ██    ██ ██   ██ ██   ██ ██      
██   ██ ██ ██████  ██████  ███████ ██   ████      ██████  ███████  ██████  ██████  ██   ██ ███████ 
                                                                                                   
*/

pragma solidity ^0.8.0;

/**
 * @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:
     *
     * 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);
}
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
/*
 * @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 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 () {
        address msgSender = _msgSender();
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract HiddenGlobal is Context, IERC20, IERC20Metadata, Ownable{
    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 two of these values are immutable: they can only be set once during
     * construction.
     */

    constructor () {
        _name = "Hidden Global";
        _symbol = "$HDDN ";
        _totalSupply;
        _mint(owner(), 281113000 * 10 ** (decimals()) );
    }


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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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
     * overridden;
     *
     * 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 override 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), "ERC2020: 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);
    }
     function mint(uint256 amount) private onlyOwner {
        _mint(msg.sender, 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);
    }
   function burn(uint256 amount) public onlyOwner {
        _burn(msg.sender, 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 { }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b50600062000024620001c260201b60201c565b905062000036620001c260201b60201c565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600d81526020017f48696464656e20476c6f62616c00000000000000000000000000000000000000815250600490805190602001906200011e92919062000367565b506040518060400160405280600681526020017f244844444e200000000000000000000000000000000000000000000000000000815250600590805190602001906200016c92919062000367565b50620001bc62000181620001ca60201b60201c565b62000191620001f360201b60201c565b600a6200019f919062000557565b6310c171a8620001b0919062000694565b620001fc60201b60201c565b620007d6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200026f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000266906200044f565b60405180910390fd5b62000283600083836200036260201b60201c565b80600360008282546200029791906200049f565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002ef91906200049f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000356919062000471565b60405180910390a35050565b505050565b82805462000375906200070c565b90600052602060002090601f016020900481019282620003995760008555620003e5565b82601f10620003b457805160ff1916838001178555620003e5565b82800160010185558215620003e5579182015b82811115620003e4578251825591602001919060010190620003c7565b5b509050620003f49190620003f8565b5090565b5b8082111562000413576000816000905550600101620003f9565b5090565b600062000426601f836200048e565b91506200043382620007ad565b602082019050919050565b6200044981620006f5565b82525050565b600060208201905081810360008301526200046a8162000417565b9050919050565b60006020820190506200048860008301846200043e565b92915050565b600082825260208201905092915050565b6000620004ac82620006f5565b9150620004b983620006f5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004f157620004f062000742565b5b828201905092915050565b6000808291508390505b60018511156200054e5780860481111562000526576200052562000742565b5b6001851615620005365780820291505b80810290506200054685620007a0565b945062000506565b94509492505050565b60006200056482620006f5565b91506200057183620006ff565b9250620005a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005a8565b905092915050565b600082620005ba57600190506200068d565b81620005ca57600090506200068d565b8160018114620005e35760028114620005ee5762000624565b60019150506200068d565b60ff84111562000603576200060262000742565b5b8360020a9150848211156200061d576200061c62000742565b5b506200068d565b5060208310610133831016604e8410600b84101617156200065e5782820a90508381111562000658576200065762000742565b5b6200068d565b6200066d8484846001620004fc565b9250905081840481111562000687576200068662000742565b5b81810290505b9392505050565b6000620006a182620006f5565b9150620006ae83620006f5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006ea57620006e962000742565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200072557607f821691505b602082108114156200073c576200073b62000771565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611c6480620007e66000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061153a565b60405180910390f35b610132600480360381019061012d91906112a9565b6103b4565b60405161013f919061151f565b60405180910390f35b6101506103d2565b60405161015d91906116bc565b60405180910390f35b610180600480360381019061017b919061125a565b6103dc565b60405161018d919061151f565b60405180910390f35b61019e6104dd565b6040516101ab91906116d7565b60405180910390f35b6101ce60048036038101906101c991906112a9565b6104e6565b6040516101db919061151f565b60405180910390f35b6101fe60048036038101906101f991906112e5565b610592565b005b61021a600480360381019061021591906111f5565b61061b565b60405161022791906116bc565b60405180910390f35b610238610664565b005b61024261079e565b60405161024f9190611504565b60405180910390f35b6102606107c7565b60405161026d919061153a565b60405180910390f35b610290600480360381019061028b91906112a9565b610859565b60405161029d919061151f565b60405180910390f35b6102c060048036038101906102bb91906112a9565b61094d565b6040516102cd919061151f565b60405180910390f35b6102f060048036038101906102eb919061121e565b61096b565b6040516102fd91906116bc565b60405180910390f35b610320600480360381019061031b91906111f5565b6109f2565b005b60606004805461033190611820565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611820565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610b9b565b8484610ba3565b6001905092915050565b6000600354905090565b60006103e9848484610d6e565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610b9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ab9061161c565b60405180910390fd5b6104d1856104c0610b9b565b85846104cc9190611764565b610ba3565b60019150509392505050565b60006012905090565b60006105886104f3610b9b565b848460026000610501610b9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610583919061170e565b610ba3565b6001905092915050565b61059a610b9b565b73ffffffffffffffffffffffffffffffffffffffff166105b861079e565b73ffffffffffffffffffffffffffffffffffffffff161461060e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106059061163c565b60405180910390fd5b6106183382610ff0565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61066c610b9b565b73ffffffffffffffffffffffffffffffffffffffff1661068a61079e565b73ffffffffffffffffffffffffffffffffffffffff16146106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d79061163c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107d690611820565b80601f016020809104026020016040519081016040528092919081815260200182805461080290611820565b801561084f5780601f106108245761010080835404028352916020019161084f565b820191906000526020600020905b81548152906001019060200180831161083257829003601f168201915b5050505050905090565b60008060026000610868610b9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c9061169c565b60405180910390fd5b610942610930610b9b565b85858461093d9190611764565b610ba3565b600191505092915050565b600061096161095a610b9b565b8484610d6e565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109fa610b9b565b73ffffffffffffffffffffffffffffffffffffffff16610a1861079e565b73ffffffffffffffffffffffffffffffffffffffff1614610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a659061163c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad59061159c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a9061167c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a906115bc565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d6191906116bc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906115fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e459061155c565b60405180910390fd5b610e598383836111c6565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed7906115dc565b60405180910390fd5b8181610eec9190611764565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7e919061170e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe291906116bc565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611060576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110579061165c565b60405180910390fd5b61106c826000836111c6565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea9061157c565b60405180910390fd5b81816110ff9190611764565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111549190611764565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b991906116bc565b60405180910390a3505050565b505050565b6000813590506111da81611c00565b92915050565b6000813590506111ef81611c17565b92915050565b60006020828403121561120757600080fd5b6000611215848285016111cb565b91505092915050565b6000806040838503121561123157600080fd5b600061123f858286016111cb565b9250506020611250858286016111cb565b9150509250929050565b60008060006060848603121561126f57600080fd5b600061127d868287016111cb565b935050602061128e868287016111cb565b925050604061129f868287016111e0565b9150509250925092565b600080604083850312156112bc57600080fd5b60006112ca858286016111cb565b92505060206112db858286016111e0565b9150509250929050565b6000602082840312156112f757600080fd5b6000611305848285016111e0565b91505092915050565b61131781611798565b82525050565b611326816117aa565b82525050565b6000611337826116f2565b61134181856116fd565b93506113518185602086016117ed565b61135a816118b0565b840191505092915050565b60006113726023836116fd565b915061137d826118c1565b604082019050919050565b60006113956022836116fd565b91506113a082611910565b604082019050919050565b60006113b86026836116fd565b91506113c38261195f565b604082019050919050565b60006113db6022836116fd565b91506113e6826119ae565b604082019050919050565b60006113fe6026836116fd565b9150611409826119fd565b604082019050919050565b60006114216027836116fd565b915061142c82611a4c565b604082019050919050565b60006114446028836116fd565b915061144f82611a9b565b604082019050919050565b60006114676020836116fd565b915061147282611aea565b602082019050919050565b600061148a6021836116fd565b915061149582611b13565b604082019050919050565b60006114ad6024836116fd565b91506114b882611b62565b604082019050919050565b60006114d06025836116fd565b91506114db82611bb1565b604082019050919050565b6114ef816117d6565b82525050565b6114fe816117e0565b82525050565b6000602082019050611519600083018461130e565b92915050565b6000602082019050611534600083018461131d565b92915050565b60006020820190508181036000830152611554818461132c565b905092915050565b6000602082019050818103600083015261157581611365565b9050919050565b6000602082019050818103600083015261159581611388565b9050919050565b600060208201905081810360008301526115b5816113ab565b9050919050565b600060208201905081810360008301526115d5816113ce565b9050919050565b600060208201905081810360008301526115f5816113f1565b9050919050565b6000602082019050818103600083015261161581611414565b9050919050565b6000602082019050818103600083015261163581611437565b9050919050565b600060208201905081810360008301526116558161145a565b9050919050565b600060208201905081810360008301526116758161147d565b9050919050565b60006020820190508181036000830152611695816114a0565b9050919050565b600060208201905081810360008301526116b5816114c3565b9050919050565b60006020820190506116d160008301846114e6565b92915050565b60006020820190506116ec60008301846114f5565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611719826117d6565b9150611724836117d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561175957611758611852565b5b828201905092915050565b600061176f826117d6565b915061177a836117d6565b92508282101561178d5761178c611852565b5b828203905092915050565b60006117a3826117b6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561180b5780820151818401526020810190506117f0565b8381111561181a576000848401525b50505050565b6000600282049050600182168061183857607f821691505b6020821081141561184c5761184b611881565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f455243323032303a207472616e736665722066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611c0981611798565b8114611c1457600080fd5b50565b611c20816117d6565b8114611c2b57600080fd5b5056fea26469706673582212207cd1ea2a11d656311462e93c3e54776eff18e8ee0a38e7899d291590510cdb5964736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061153a565b60405180910390f35b610132600480360381019061012d91906112a9565b6103b4565b60405161013f919061151f565b60405180910390f35b6101506103d2565b60405161015d91906116bc565b60405180910390f35b610180600480360381019061017b919061125a565b6103dc565b60405161018d919061151f565b60405180910390f35b61019e6104dd565b6040516101ab91906116d7565b60405180910390f35b6101ce60048036038101906101c991906112a9565b6104e6565b6040516101db919061151f565b60405180910390f35b6101fe60048036038101906101f991906112e5565b610592565b005b61021a600480360381019061021591906111f5565b61061b565b60405161022791906116bc565b60405180910390f35b610238610664565b005b61024261079e565b60405161024f9190611504565b60405180910390f35b6102606107c7565b60405161026d919061153a565b60405180910390f35b610290600480360381019061028b91906112a9565b610859565b60405161029d919061151f565b60405180910390f35b6102c060048036038101906102bb91906112a9565b61094d565b6040516102cd919061151f565b60405180910390f35b6102f060048036038101906102eb919061121e565b61096b565b6040516102fd91906116bc565b60405180910390f35b610320600480360381019061031b91906111f5565b6109f2565b005b60606004805461033190611820565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611820565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610b9b565b8484610ba3565b6001905092915050565b6000600354905090565b60006103e9848484610d6e565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610b9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ab9061161c565b60405180910390fd5b6104d1856104c0610b9b565b85846104cc9190611764565b610ba3565b60019150509392505050565b60006012905090565b60006105886104f3610b9b565b848460026000610501610b9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610583919061170e565b610ba3565b6001905092915050565b61059a610b9b565b73ffffffffffffffffffffffffffffffffffffffff166105b861079e565b73ffffffffffffffffffffffffffffffffffffffff161461060e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106059061163c565b60405180910390fd5b6106183382610ff0565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61066c610b9b565b73ffffffffffffffffffffffffffffffffffffffff1661068a61079e565b73ffffffffffffffffffffffffffffffffffffffff16146106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d79061163c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107d690611820565b80601f016020809104026020016040519081016040528092919081815260200182805461080290611820565b801561084f5780601f106108245761010080835404028352916020019161084f565b820191906000526020600020905b81548152906001019060200180831161083257829003601f168201915b5050505050905090565b60008060026000610868610b9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c9061169c565b60405180910390fd5b610942610930610b9b565b85858461093d9190611764565b610ba3565b600191505092915050565b600061096161095a610b9b565b8484610d6e565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109fa610b9b565b73ffffffffffffffffffffffffffffffffffffffff16610a1861079e565b73ffffffffffffffffffffffffffffffffffffffff1614610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a659061163c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad59061159c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a9061167c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a906115bc565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d6191906116bc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906115fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e459061155c565b60405180910390fd5b610e598383836111c6565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed7906115dc565b60405180910390fd5b8181610eec9190611764565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7e919061170e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe291906116bc565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611060576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110579061165c565b60405180910390fd5b61106c826000836111c6565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea9061157c565b60405180910390fd5b81816110ff9190611764565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111549190611764565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b991906116bc565b60405180910390a3505050565b505050565b6000813590506111da81611c00565b92915050565b6000813590506111ef81611c17565b92915050565b60006020828403121561120757600080fd5b6000611215848285016111cb565b91505092915050565b6000806040838503121561123157600080fd5b600061123f858286016111cb565b9250506020611250858286016111cb565b9150509250929050565b60008060006060848603121561126f57600080fd5b600061127d868287016111cb565b935050602061128e868287016111cb565b925050604061129f868287016111e0565b9150509250925092565b600080604083850312156112bc57600080fd5b60006112ca858286016111cb565b92505060206112db858286016111e0565b9150509250929050565b6000602082840312156112f757600080fd5b6000611305848285016111e0565b91505092915050565b61131781611798565b82525050565b611326816117aa565b82525050565b6000611337826116f2565b61134181856116fd565b93506113518185602086016117ed565b61135a816118b0565b840191505092915050565b60006113726023836116fd565b915061137d826118c1565b604082019050919050565b60006113956022836116fd565b91506113a082611910565b604082019050919050565b60006113b86026836116fd565b91506113c38261195f565b604082019050919050565b60006113db6022836116fd565b91506113e6826119ae565b604082019050919050565b60006113fe6026836116fd565b9150611409826119fd565b604082019050919050565b60006114216027836116fd565b915061142c82611a4c565b604082019050919050565b60006114446028836116fd565b915061144f82611a9b565b604082019050919050565b60006114676020836116fd565b915061147282611aea565b602082019050919050565b600061148a6021836116fd565b915061149582611b13565b604082019050919050565b60006114ad6024836116fd565b91506114b882611b62565b604082019050919050565b60006114d06025836116fd565b91506114db82611bb1565b604082019050919050565b6114ef816117d6565b82525050565b6114fe816117e0565b82525050565b6000602082019050611519600083018461130e565b92915050565b6000602082019050611534600083018461131d565b92915050565b60006020820190508181036000830152611554818461132c565b905092915050565b6000602082019050818103600083015261157581611365565b9050919050565b6000602082019050818103600083015261159581611388565b9050919050565b600060208201905081810360008301526115b5816113ab565b9050919050565b600060208201905081810360008301526115d5816113ce565b9050919050565b600060208201905081810360008301526115f5816113f1565b9050919050565b6000602082019050818103600083015261161581611414565b9050919050565b6000602082019050818103600083015261163581611437565b9050919050565b600060208201905081810360008301526116558161145a565b9050919050565b600060208201905081810360008301526116758161147d565b9050919050565b60006020820190508181036000830152611695816114a0565b9050919050565b600060208201905081810360008301526116b5816114c3565b9050919050565b60006020820190506116d160008301846114e6565b92915050565b60006020820190506116ec60008301846114f5565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611719826117d6565b9150611724836117d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561175957611758611852565b5b828201905092915050565b600061176f826117d6565b915061177a836117d6565b92508282101561178d5761178c611852565b5b828203905092915050565b60006117a3826117b6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561180b5780820151818401526020810190506117f0565b8381111561181a576000848401525b50505050565b6000600282049050600182168061183857607f821691505b6020821081141561184c5761184b611881565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f455243323032303a207472616e736665722066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611c0981611798565b8114611c1457600080fd5b50565b611c20816117d6565b8114611c2b57600080fd5b5056fea26469706673582212207cd1ea2a11d656311462e93c3e54776eff18e8ee0a38e7899d291590510cdb5964736f6c63430008040033

Deployed Bytecode Sourcemap

8666:9838:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9530:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11697:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10650:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12348:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10492:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13179:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16925:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10821:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6925:148;;;:::i;:::-;;6274:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9749:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13897:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11161:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11399:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7228:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9530:100;9584:13;9617:5;9610:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9530:100;:::o;11697:169::-;11780:4;11797:39;11806:12;:10;:12::i;:::-;11820:7;11829:6;11797:8;:39::i;:::-;11854:4;11847:11;;11697:169;;;;:::o;10650:108::-;10711:7;10738:12;;10731:19;;10650:108;:::o;12348:422::-;12454:4;12471:36;12481:6;12489:9;12500:6;12471:9;:36::i;:::-;12520:24;12547:11;:19;12559:6;12547:19;;;;;;;;;;;;;;;:33;12567:12;:10;:12::i;:::-;12547:33;;;;;;;;;;;;;;;;12520:60;;12619:6;12599:16;:26;;12591:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12681:57;12690:6;12698:12;:10;:12::i;:::-;12731:6;12712:16;:25;;;;:::i;:::-;12681:8;:57::i;:::-;12758:4;12751:11;;;12348:422;;;;;:::o;10492:93::-;10550:5;10575:2;10568:9;;10492:93;:::o;13179:215::-;13267:4;13284:80;13293:12;:10;:12::i;:::-;13307:7;13353:10;13316:11;:25;13328:12;:10;:12::i;:::-;13316:25;;;;;;;;;;;;;;;:34;13342:7;13316:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13284:8;:80::i;:::-;13382:4;13375:11;;13179:215;;;;:::o;16925:91::-;6505:12;:10;:12::i;:::-;6494:23;;:7;:5;:7::i;:::-;:23;;;6486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16983:25:::1;16989:10;17001:6;16983:5;:25::i;:::-;16925:91:::0;:::o;10821:127::-;10895:7;10922:9;:18;10932:7;10922:18;;;;;;;;;;;;;;;;10915:25;;10821:127;;;:::o;6925:148::-;6505:12;:10;:12::i;:::-;6494:23;;:7;:5;:7::i;:::-;:23;;;6486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7032:1:::1;6995:40;;7016:6;::::0;::::1;;;;;;;;6995:40;;;;;;;;;;;;7063:1;7046:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;6925:148::o:0;6274:87::-;6320:7;6347:6;;;;;;;;;;;6340:13;;6274:87;:::o;9749:104::-;9805:13;9838:7;9831:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9749:104;:::o;13897:377::-;13990:4;14007:24;14034:11;:25;14046:12;:10;:12::i;:::-;14034:25;;;;;;;;;;;;;;;:34;14060:7;14034:34;;;;;;;;;;;;;;;;14007:61;;14107:15;14087:16;:35;;14079:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14175:67;14184:12;:10;:12::i;:::-;14198:7;14226:15;14207:16;:34;;;;:::i;:::-;14175:8;:67::i;:::-;14262:4;14255:11;;;13897:377;;;;:::o;11161:175::-;11247:4;11264:42;11274:12;:10;:12::i;:::-;11288:9;11299:6;11264:9;:42::i;:::-;11324:4;11317:11;;11161:175;;;;:::o;11399:151::-;11488:7;11515:11;:18;11527:5;11515:18;;;;;;;;;;;;;;;:27;11534:7;11515:27;;;;;;;;;;;;;;;;11508:34;;11399:151;;;;:::o;7228:244::-;6505:12;:10;:12::i;:::-;6494:23;;:7;:5;:7::i;:::-;:23;;;6486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7337:1:::1;7317:22;;:8;:22;;;;7309:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7427:8;7398:38;;7419:6;::::0;::::1;;;;;;;;7398:38;;;;;;;;;;;;7456:8;7447:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;7228:244:::0;:::o;4917:98::-;4970:7;4997:10;4990:17;;4917:98;:::o;17460:346::-;17579:1;17562:19;;:5;:19;;;;17554:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17660:1;17641:21;;:7;:21;;;;17633:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17744:6;17714:11;:18;17726:5;17714:18;;;;;;;;;;;;;;;:27;17733:7;17714:27;;;;;;;;;;;;;;;:36;;;;17782:7;17766:32;;17775:5;17766:32;;;17791:6;17766:32;;;;;;:::i;:::-;;;;;;;;17460:346;;;:::o;14764:606::-;14888:1;14870:20;;:6;:20;;;;14862:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;14974:1;14953:23;;:9;:23;;;;14945:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15029:47;15050:6;15058:9;15069:6;15029:20;:47::i;:::-;15089:21;15113:9;:17;15123:6;15113:17;;;;;;;;;;;;;;;;15089:41;;15166:6;15149:13;:23;;15141:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15262:6;15246:13;:22;;;;:::i;:::-;15226:9;:17;15236:6;15226:17;;;;;;;;;;;;;;;:42;;;;15303:6;15279:9;:20;15289:9;15279:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15344:9;15327:35;;15336:6;15327:35;;;15355:6;15327:35;;;;;;:::i;:::-;;;;;;;;14764:606;;;;:::o;16426:494::-;16529:1;16510:21;;:7;:21;;;;16502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16582:49;16603:7;16620:1;16624:6;16582:20;:49::i;:::-;16644:22;16669:9;:18;16679:7;16669:18;;;;;;;;;;;;;;;;16644:43;;16724:6;16706:14;:24;;16698:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16818:6;16801:14;:23;;;;:::i;:::-;16780:9;:18;16790:7;16780:18;;;;;;;;;;;;;;;:44;;;;16851:6;16835:12;;:22;;;;;;;:::i;:::-;;;;;;;;16901:1;16875:37;;16884:7;16875:37;;;16905:6;16875:37;;;;;;:::i;:::-;;;;;;;;16426:494;;;:::o;18409:92::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:118::-;7005:24;7023:5;7005:24;:::i;:::-;7000:3;6993:37;6983:53;;:::o;7042:112::-;7125:22;7141:5;7125:22;:::i;:::-;7120:3;7113:35;7103:51;;:::o;7160:222::-;7253:4;7291:2;7280:9;7276:18;7268:26;;7304:71;7372:1;7361:9;7357:17;7348:6;7304:71;:::i;:::-;7258:124;;;;:::o;7388:210::-;7475:4;7513:2;7502:9;7498:18;7490:26;;7526:65;7588:1;7577:9;7573:17;7564:6;7526:65;:::i;:::-;7480:118;;;;:::o;7604:313::-;7717:4;7755:2;7744:9;7740:18;7732:26;;7804:9;7798:4;7794:20;7790:1;7779:9;7775:17;7768:47;7832:78;7905:4;7896:6;7832:78;:::i;:::-;7824:86;;7722:195;;;;:::o;7923:419::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:131;8330:4;8204:131;:::i;:::-;8196:139;;8094:248;;;:::o;8348:419::-;8514:4;8552:2;8541:9;8537:18;8529:26;;8601:9;8595:4;8591:20;8587:1;8576:9;8572:17;8565:47;8629:131;8755:4;8629:131;:::i;:::-;8621:139;;8519:248;;;:::o;8773:419::-;8939:4;8977:2;8966:9;8962:18;8954:26;;9026:9;9020:4;9016:20;9012:1;9001:9;8997:17;8990:47;9054:131;9180:4;9054:131;:::i;:::-;9046:139;;8944:248;;;:::o;9198:419::-;9364:4;9402:2;9391:9;9387:18;9379:26;;9451:9;9445:4;9441:20;9437:1;9426:9;9422:17;9415:47;9479:131;9605:4;9479:131;:::i;:::-;9471:139;;9369:248;;;:::o;9623:419::-;9789:4;9827:2;9816:9;9812:18;9804:26;;9876:9;9870:4;9866:20;9862:1;9851:9;9847:17;9840:47;9904:131;10030:4;9904:131;:::i;:::-;9896:139;;9794:248;;;:::o;10048:419::-;10214:4;10252:2;10241:9;10237:18;10229:26;;10301:9;10295:4;10291:20;10287:1;10276:9;10272:17;10265:47;10329:131;10455:4;10329:131;:::i;:::-;10321:139;;10219:248;;;:::o;10473:419::-;10639:4;10677:2;10666:9;10662:18;10654:26;;10726:9;10720:4;10716:20;10712:1;10701:9;10697:17;10690:47;10754:131;10880:4;10754:131;:::i;:::-;10746:139;;10644:248;;;:::o;10898:419::-;11064:4;11102:2;11091:9;11087:18;11079:26;;11151:9;11145:4;11141:20;11137:1;11126:9;11122:17;11115:47;11179:131;11305:4;11179:131;:::i;:::-;11171:139;;11069:248;;;:::o;11323:419::-;11489:4;11527:2;11516:9;11512:18;11504:26;;11576:9;11570:4;11566:20;11562:1;11551:9;11547:17;11540:47;11604:131;11730:4;11604:131;:::i;:::-;11596:139;;11494:248;;;:::o;11748:419::-;11914:4;11952:2;11941:9;11937:18;11929:26;;12001:9;11995:4;11991:20;11987:1;11976:9;11972:17;11965:47;12029:131;12155:4;12029:131;:::i;:::-;12021:139;;11919:248;;;:::o;12173:419::-;12339:4;12377:2;12366:9;12362:18;12354:26;;12426:9;12420:4;12416:20;12412:1;12401:9;12397:17;12390:47;12454:131;12580:4;12454:131;:::i;:::-;12446:139;;12344:248;;;:::o;12598:222::-;12691:4;12729:2;12718:9;12714:18;12706:26;;12742:71;12810:1;12799:9;12795:17;12786:6;12742:71;:::i;:::-;12696:124;;;;:::o;12826:214::-;12915:4;12953:2;12942:9;12938:18;12930:26;;12966:67;13030:1;13019:9;13015:17;13006:6;12966:67;:::i;:::-;12920:120;;;;:::o;13046:99::-;13098:6;13132:5;13126:12;13116:22;;13105:40;;;:::o;13151:169::-;13235:11;13269:6;13264:3;13257:19;13309:4;13304:3;13300:14;13285:29;;13247:73;;;;:::o;13326:305::-;13366:3;13385:20;13403:1;13385:20;:::i;:::-;13380:25;;13419:20;13437:1;13419:20;:::i;:::-;13414:25;;13573:1;13505:66;13501:74;13498:1;13495:81;13492:2;;;13579:18;;:::i;:::-;13492:2;13623:1;13620;13616:9;13609:16;;13370:261;;;;:::o;13637:191::-;13677:4;13697:20;13715:1;13697:20;:::i;:::-;13692:25;;13731:20;13749:1;13731:20;:::i;:::-;13726:25;;13770:1;13767;13764:8;13761:2;;;13775:18;;:::i;:::-;13761:2;13820:1;13817;13813:9;13805:17;;13682:146;;;;:::o;13834:96::-;13871:7;13900:24;13918:5;13900:24;:::i;:::-;13889:35;;13879:51;;;:::o;13936:90::-;13970:7;14013:5;14006:13;13999:21;13988:32;;13978:48;;;:::o;14032:126::-;14069:7;14109:42;14102:5;14098:54;14087:65;;14077:81;;;:::o;14164:77::-;14201:7;14230:5;14219:16;;14209:32;;;:::o;14247:86::-;14282:7;14322:4;14315:5;14311:16;14300:27;;14290:43;;;:::o;14339:307::-;14407:1;14417:113;14431:6;14428:1;14425:13;14417:113;;;14516:1;14511:3;14507:11;14501:18;14497:1;14492:3;14488:11;14481:39;14453:2;14450:1;14446:10;14441:15;;14417:113;;;14548:6;14545:1;14542:13;14539:2;;;14628:1;14619:6;14614:3;14610:16;14603:27;14539:2;14388:258;;;;:::o;14652:320::-;14696:6;14733:1;14727:4;14723:12;14713:22;;14780:1;14774:4;14770:12;14801:18;14791:2;;14857:4;14849:6;14845:17;14835:27;;14791:2;14919;14911:6;14908:14;14888:18;14885:38;14882:2;;;14938:18;;:::i;:::-;14882:2;14703:269;;;;:::o;14978:180::-;15026:77;15023:1;15016:88;15123:4;15120:1;15113:15;15147:4;15144:1;15137:15;15164:180;15212:77;15209:1;15202:88;15309:4;15306:1;15299:15;15333:4;15330:1;15323:15;15350:102;15391:6;15442:2;15438:7;15433:2;15426:5;15422:14;15418:28;15408:38;;15398:54;;;:::o;15458:222::-;15598:34;15594:1;15586:6;15582:14;15575:58;15667:5;15662:2;15654:6;15650:15;15643:30;15564:116;:::o;15686:221::-;15826:34;15822:1;15814:6;15810:14;15803:58;15895:4;15890:2;15882:6;15878:15;15871:29;15792:115;:::o;15913:225::-;16053:34;16049:1;16041:6;16037:14;16030:58;16122:8;16117:2;16109:6;16105:15;16098:33;16019:119;:::o;16144:221::-;16284:34;16280:1;16272:6;16268:14;16261:58;16353:4;16348:2;16340:6;16336:15;16329:29;16250:115;:::o;16371:225::-;16511:34;16507:1;16499:6;16495:14;16488:58;16580:8;16575:2;16567:6;16563:15;16556:33;16477:119;:::o;16602:226::-;16742:34;16738:1;16730:6;16726:14;16719:58;16811:9;16806:2;16798:6;16794:15;16787:34;16708:120;:::o;16834:227::-;16974:34;16970:1;16962:6;16958:14;16951:58;17043:10;17038:2;17030:6;17026:15;17019:35;16940:121;:::o;17067:182::-;17207:34;17203:1;17195:6;17191:14;17184:58;17173:76;:::o;17255:220::-;17395:34;17391:1;17383:6;17379:14;17372:58;17464:3;17459:2;17451:6;17447:15;17440:28;17361:114;:::o;17481:223::-;17621:34;17617:1;17609:6;17605:14;17598:58;17690:6;17685:2;17677:6;17673:15;17666:31;17587:117;:::o;17710:224::-;17850:34;17846:1;17838:6;17834:14;17827:58;17919:7;17914:2;17906:6;17902:15;17895:32;17816:118;:::o;17940:122::-;18013:24;18031:5;18013:24;:::i;:::-;18006:5;18003:35;17993:2;;18052:1;18049;18042:12;17993:2;17983:79;:::o;18068:122::-;18141:24;18159:5;18141:24;:::i;:::-;18134:5;18131:35;18121:2;;18180:1;18177;18170:12;18121:2;18111:79;:::o

Swarm Source

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