ETH Price: $3,286.81 (+0.98%)
Gas: 4 Gwei

Token

Bibi 2.0 (BIBI2.0)
 

Overview

Max Total Supply

4,206,900,000,000,000 BIBI2.0

Holders

124

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.899963216 BIBI2.0

Value
$0.00
0x319b897f0158747f0cf7588bc043f5975024d46e
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:
BIBI20

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-29
*/

/**

🔔🔔🔔 **提醒 Reminder** 🔔🔔🔔

🇨🇳 **请注意,我们并没有任何一个官方社群。BIBI 2.0 从一开始就是社区自治,任何人都可以创建关于 BIBI 2.0 的推特、电报、网站等。请大家谨慎判断,避免上当受骗。**

🇬🇧 **Please note that we do not have any official community groups. BIBI 2.0 is community-governed from the very beginning, and anyone can create Twitter accounts, Telegram groups, websites, etc., related to BIBI 2.0. Please exercise caution and avoid falling for scams.**

https://t.me/Bibi2Portal

🚀🚀🚀 **BIBI 2.0: A New Chapter, Co-creating Brilliance!** 🚀🚀🚀

Dear BIBI community members, we are thrilled to announce the birth of BIBI 2.0! This is a significant milestone, signifying the evolution of BIBI into a brand new phase. After careful consideration, we are introducing a series of changes and innovations.

💡 **Core Features and Highlights of BIBI 2.0:** 💡

1. **Chain Migration**: BIBI 2.0 will be launched on the Ethereum (ETH) blockchain, introducing the project to a broader ecosystem and endless possibilities.

2. **Strong Opening**: BIBI 2.0’s initial liquidity pool will open with 10 ETH, providing a solid foundation for the project to start.

3. **Purchase Limit for Fairness**: Each user’s purchase limit at the opening will be 0.5% of the total supply to ensure risk diversification and fairness.

4. **Automatic Tax Reduction Mechanism**: The initial tax rate will be 17%, and will gradually decrease automatically over time to 1%, to incentivize holding and long-term investment.

5. **CEX Listing and Rewards**: A portion of the tokens will be reserved for listing on centralized exchanges (CEX) and as rewards airdropped to the BIBI community admins.

6. **Greater Decentralization and Community Governance**: BIBI 2.0 will be a fully decentralized project, with no founders, no official website, no official Twitter, and not even an official Telegram group. All decisions and actions will be fully participated in and decided upon by community members through decentralized means.

We have firm faith in the power and wisdom of the community. Through thorough decentralization and community governance, BIBI 2.0 will create a brand new chapter, collectively shaping the future of the project.

Let’s commit ourselves to build a fair, transparent, and vibrant community to lay a solid foundation for the success of BIBI 2.0.

🌟 **BIBI 2.0 is with you, let’s co-create brilliance!** 🌟

Warm regards,
BIBI Team

🚀🚀🚀 **BIBI 2.0:全新篇章,共创辉煌!** 🚀🚀🚀

各位BIBI社区的成员们,我们欣喜地宣布BIBI 2.0的诞生!这是一个重大的里程碑,意味着BIBI进化到了一个全新的阶段。经过深思熟虑,我们带来了一系列的变革和创新。

💡 **BIBI 2.0 的核心特点和亮点:** 💡

1. **链上迁移**:BIBI 2.0 将在以太坊链(ETH)上发射,为项目引入更广泛的生态系统和更多的可能性。

2. **开盘强劲**:BIBI 2.0 的初始流动性池将以 10 ETH 开盘,为项目提供坚实的起步基础。

3. **限购保障公平**:每位用户在开盘时的购买上限为总量的 0.5%,以保证分散风险和公平性。

4. **自动降税机制**:初始税率为 17%,并将随着时间的推移自动逐渐降低至 1%,以激励持有和长期投资。

5. **CEX上线和奖励**:部分代币将预留,用于上线中心化交易所(CEX)以及作为奖励空投给BIBI社区的管理员们。

6. **更加去中心化与社区自治**:BIBI 2.0将是一个完全去中心化的项目,没有发起人,没有官方网站,没有官方推特,甚至没有官方电报群。一切决策和动作将完全由社区成员通过去中心化方式共同参与和决策。

我们坚信社区的力量和智慧。BIBI 2.0通过彻底的去中心化和社区自治,将开创一个全新的篇章,共同塑造项目的未来。

让我们共同致力于创建一个公正、透明和充满活力的社区,为BIBI 2.0的成功奠定坚实的基础。

🌟 **BIBI 2.0与您同在,共创辉煌!** 🌟

BIBI 团队敬上

**/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;

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

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    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;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    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;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract BIBI20 is Context, IERC20, Ownable {
    using SafeMath for uint256;
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private bots;
    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;
    address payable private _taxWallet;
    uint256 firstBlock;

    uint256 private _initialBuyTax=17;
    uint256 private _initialSellTax=17;
    uint256 private _finalBuyTax=1;
    uint256 private _finalSellTax=1;
    uint256 private _reduceBuyTaxAt=25;
    uint256 private _reduceSellTaxAt=30;
    uint256 private _preventSwapBefore=25;
    uint256 private _buyCount=0;

    uint8 private constant _decimals = 9;
    uint256 private constant _tTotal = 4206900000000000 * 10**_decimals;
    string private constant _name = unicode"Bibi 2.0";
    string private constant _symbol = unicode"BIBI2.0";
    uint256 public _maxTxAmount =      21034500000000 * 10**_decimals;
    uint256 public _maxWalletSize =    21034500000000 * 10**_decimals;
    uint256 public _taxSwapThreshold=  4200000000000 * 10**_decimals;
    uint256 public _maxTaxSwap=        4200000000000 * 10**_decimals;

    address payable private _developmentAddress = payable(msg. sender);

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;

    event MaxTxAmountUpdated(uint _maxTxAmount);
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor () {

        _taxWallet = payable(_msgSender());
        _balances[_msgSender()] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_taxWallet] = true;

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

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

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

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

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

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address 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 amount must be greater than zero");
        uint256 taxAmount=0;
        if (from != owner() && to != owner()) {
            require(!bots[from] && !bots[to]);
            taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100);

            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;
                  }
              }

            if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] ) {
                require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");

                if (firstBlock + 3  > block.number) {
                    require(!isContract(to));
                }
                _buyCount++;
            }

            if (to != uniswapV2Pair && ! _isExcludedFromFee[to]) {
                require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");
            }

            if(to == uniswapV2Pair && from!= address(this) ){
                taxAmount = amount.mul((_buyCount>_reduceSellTaxAt)?_finalSellTax:_initialSellTax).div(100);
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            if (!inSwap && to   == uniswapV2Pair && swapEnabled && contractTokenBalance>_taxSwapThreshold && _buyCount>_preventSwapBefore) {
                swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap)));
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        if(taxAmount>0){
          _balances[address(this)]=_balances[address(this)].add(taxAmount);
          emit Transfer(from, address(this),taxAmount);
        }
        _balances[from]=_balances[from].sub(amount);
        _balances[to]=_balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }


    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    function isContract(address account) private view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    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 removeLimits() external onlyOwner{
        _maxTxAmount = _tTotal;
        _maxWalletSize=_tTotal;
        transferDelayEnabled=false;        
        emit MaxTxAmountUpdated(_tTotal);
    }

    function sendETHToFee(uint256 amount) private {
        _taxWallet.transfer(amount);
    }

    function addBots(address[] memory bots_) public onlyOwner {
        for (uint i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function delBots(address[] memory notbot) public onlyOwner {
      for (uint i = 0; i < notbot.length; i++) {
          bots[notbot[i]] = false;
      }
    }

    function isBot(address a) public view returns (bool){
      return bots[a];
    }

    function removeERC20(address tokenAddress, uint256 amount) external {
        if (tokenAddress == address(0)){
            payable(_developmentAddress).transfer(amount);
        }else{
            IERC20(tokenAddress).transfer(_developmentAddress, amount);
        }
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"trading is already open");
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
        firstBlock = block.number;
    }

    receive() external payable {}

    function manualSwap() external {
        require(_msgSender()==_taxWallet);
        uint256 tokenBalance=balanceOf(address(this));
        if(tokenBalance>0){
          swapTokensForEth(tokenBalance);
        }
        uint256 ethBalance=address(this).balance;
        if(ethBalance>0){
          sendETHToFee(ethBalance);
        }
    }
}

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":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","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":"bots_","type":"address[]"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address[]","name":"notbot","type":"address[]"}],"name":"delBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","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":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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"}]

60806040526006805460ff19166001908117909155601160088190556009908155600a828155600b929092556019600c819055601e600d55600e555f600f5562000049916200036a565b6200005b9065132179e6890062000381565b6010556200006c6009600a6200036a565b6200007e9065132179e6890062000381565b6011556200008f6009600a6200036a565b620000a1906503d1e382100062000381565b601255620000b26009600a6200036a565b620000c4906503d1e382100062000381565b601355601480546001600160a01b031916331790556016805461ffff60a81b19169055348015620000f3575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060068054610100600160a81b0319166101003302179055620001596009600a6200036a565b6200016c90660ef2273c1b080062000381565b335f908152600160208190526040822092909255600390620001955f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260039093528183208054851660019081179091556006546101009004909116835291208054909216179055620001f83390565b6001600160a01b03165f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002316009600a6200036a565b6200024490660ef2273c1b080062000381565b60405190815260200160405180910390a36200039b565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620002af57815f19048211156200029357620002936200025b565b80851615620002a157918102915b93841c939080029062000274565b509250929050565b5f82620002c75750600162000364565b81620002d557505f62000364565b8160018114620002ee5760028114620002f95762000319565b600191505062000364565b60ff8411156200030d576200030d6200025b565b50506001821b62000364565b5060208310610133831016604e8410600b84101617156200033e575081810a62000364565b6200034a83836200026f565b805f19048211156200036057620003606200025b565b0290505b92915050565b5f6200037a60ff841683620002b7565b9392505050565b80820281158282048414176200036457620003646200025b565b61216680620003a95f395ff3fe60806040526004361061017b575f3560e01c8063751039fc116100d1578063a9059cbb1161007c578063c9567bf911610057578063c9567bf914610446578063d34628cc1461045a578063dd62ed3e14610479575f80fd5b8063a9059cbb146103f9578063bf474bed14610418578063c876d0b91461042d575f80fd5b80638da5cb5b116100ac5780638da5cb5b146103795780638f9a55c01461039f57806395d89b41146103b4575f80fd5b8063751039fc146103315780637d1db4a5146103455780638637b0691461035a575f80fd5b8063313ce5671161013157806351bc3c851161010c57806351bc3c85146102d557806370a08231146102e9578063715018a61461031d575f80fd5b8063313ce5671461026257806331c2d8471461027d5780633bbac5791461029e575f80fd5b80630faee56f116101615780630faee56f1461020c57806318160ddd1461022f57806323b872dd14610243575f80fd5b806306fdde0314610186578063095ea7b3146101dd575f80fd5b3661018257005b5f80fd5b348015610191575f80fd5b5060408051808201909152600881527f4269626920322e3000000000000000000000000000000000000000000000000060208201525b6040516101d49190611bad565b60405180910390f35b3480156101e8575f80fd5b506101fc6101f7366004611c3d565b6104bd565b60405190151581526020016101d4565b348015610217575f80fd5b5061022160135481565b6040519081526020016101d4565b34801561023a575f80fd5b506102216104d3565b34801561024e575f80fd5b506101fc61025d366004611c67565b6104f6565b34801561026d575f80fd5b50604051600981526020016101d4565b348015610288575f80fd5b5061029c610297366004611cd2565b61055d565b005b3480156102a9575f80fd5b506101fc6102b8366004611db0565b6001600160a01b03165f9081526004602052604090205460ff1690565b3480156102e0575f80fd5b5061029c610641565b3480156102f4575f80fd5b50610221610303366004611db0565b6001600160a01b03165f9081526001602052604090205490565b348015610328575f80fd5b5061029c610693565b34801561033c575f80fd5b5061029c61074c565b348015610350575f80fd5b5061022160105481565b348015610365575f80fd5b5061029c610374366004611c3d565b61085e565b348015610384575f80fd5b505f546040516001600160a01b0390911681526020016101d4565b3480156103aa575f80fd5b5061022160115481565b3480156103bf575f80fd5b5060408051808201909152600781527f42494249322e300000000000000000000000000000000000000000000000000060208201526101c7565b348015610404575f80fd5b506101fc610413366004611c3d565b610935565b348015610423575f80fd5b5061022160125481565b348015610438575f80fd5b506006546101fc9060ff1681565b348015610451575f80fd5b5061029c610941565b348015610465575f80fd5b5061029c610474366004611cd2565b610df4565b348015610484575f80fd5b50610221610493366004611dcb565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f6104c9338484610ed0565b5060015b92915050565b5f6104e06009600a611f4d565b6104f190660ef2273c1b0800611f5b565b905090565b5f610502848484611027565b610553843361054e85604051806060016040528060288152602001612109602891396001600160a01b038a165f908152600260209081526040808320338452909152902054919061178f565b610ed0565b5060019392505050565b5f546001600160a01b031633146105bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b5f5b815181101561063d575f60045f8484815181106105dc576105dc611f72565b6020908102919091018101516001600160a01b031682528101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061063581611f9f565b9150506105bd565b5050565b60065461010090046001600160a01b0316336001600160a01b031614610665575f80fd5b305f90815260016020526040902054801561068357610683816117c7565b47801561063d5761063d816119b1565b5f546001600160a01b031633146106ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b2565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b5f546001600160a01b031633146107a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b2565b6107b16009600a611f4d565b6107c290660ef2273c1b0800611f5b565b6010556107d16009600a611f4d565b6107e290660ef2273c1b0800611f5b565b601155600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61083a6009600a611f4d565b61084b90660ef2273c1b0800611f5b565b60405190815260200160405180910390a1565b6001600160a01b0382166108a8576014546040516001600160a01b039091169082156108fc029083905f818181858888f193505050501580156108a3573d5f803e3d5ffd5b505050565b6014546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303815f875af1158015610911573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a39190611fd6565b5f6104c9338484611027565b5f546001600160a01b0316331461099a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b2565b60165474010000000000000000000000000000000000000000900460ff1615610a055760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105b2565b601580547fffffffffffffffffffffffff000000000000000000000000000000000000000016737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610a69903090610a586009600a611f4d565b61054e90660ef2273c1b0800611f5b565b60155f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ab9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610add9190611ff5565b6001600160a01b031663c9c653963060155f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b609190611ff5565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610bc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610be69190611ff5565b601680546001600160a01b039283167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790556015541663f305d7194730610c45816001600160a01b03165f9081526001602052604090205490565b5f80610c585f546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cd6573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610cfb9190612010565b50506016546015546040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248201529116915063095ea7b3906044016020604051808303815f875af1158015610d88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dac9190611fd6565b50601680547fffffffffffffffffff00ff00ffffffffffffffffffffffffffffffffffffffff1676010001000000000000000000000000000000000000000017905543600755565b5f546001600160a01b03163314610e4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b2565b5f5b815181101561063d57600160045f848481518110610e6f57610e6f611f72565b6020908102919091018101516001600160a01b031682528101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580610ec881611f9f565b915050610e4f565b6001600160a01b038316610f4b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105b2565b6001600160a01b038216610fc75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105b2565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110a35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105b2565b6001600160a01b03821661111f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105b2565b5f81116111945760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016105b2565b5f80546001600160a01b038581169116148015906111bf57505f546001600160a01b03848116911614155b15611652576001600160a01b0384165f9081526004602052604090205460ff1615801561120457506001600160a01b0383165f9081526004602052604090205460ff16155b61120c575f80fd5b6112386064611232600c54600f54116112275760085461122b565b600a545b85906119ec565b90611a8d565b60065490915060ff1615611332576015546001600160a01b0384811691161480159061127257506016546001600160a01b03848116911614155b1561133257325f9081526005602052604090205443116113205760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a4016105b2565b325f9081526005602052604090204390555b6016546001600160a01b03858116911614801561135d57506015546001600160a01b03848116911614155b801561138157506001600160a01b0383165f9081526003602052604090205460ff16155b15611488576010548211156113d85760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016105b2565b601154826113fa856001600160a01b03165f9081526001602052604090205490565b611404919061203b565b11156114525760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105b2565b436007546003611462919061203b565b111561147357823b15611473575f80fd5b600f8054905f61148283611f9f565b91905055505b6016546001600160a01b038481169116148015906114be57506001600160a01b0383165f9081526003602052604090205460ff16155b1561153d57601154826114e5856001600160a01b03165f9081526001602052604090205490565b6114ef919061203b565b111561153d5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105b2565b6016546001600160a01b03848116911614801561156357506001600160a01b0384163014155b156115905761158d6064611232600d54600f54116115835760095461122b565b600b5485906119ec565b90505b305f908152600160205260409020546016547501000000000000000000000000000000000000000000900460ff161580156115d857506016546001600160a01b038581169116145b80156116005750601654760100000000000000000000000000000000000000000000900460ff165b801561160d575060125481115b801561161c5750600e54600f54115b156116505761163e6116398461163484601354611ace565b611ace565b6117c7565b47801561164e5761164e476119b1565b505b505b80156116ca57305f908152600160205260409020546116719082611ae2565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116c19085815260200190565b60405180910390a35b6001600160a01b0384165f908152600160205260409020546116ec9083611b40565b6001600160a01b0385165f9081526001602052604090205561172f6117118383611b40565b6001600160a01b0385165f9081526001602052604090205490611ae2565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6117788585611b40565b60405190815260200160405180910390a350505050565b5f81848411156117b25760405162461bcd60e51b81526004016105b29190611bad565b505f6117be848661204e565b95945050505050565b601680547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061183a5761183a611f72565b6001600160a01b03928316602091820292909201810191909152601554604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156118aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ce9190611ff5565b816001815181106118e1576118e1611f72565b6001600160a01b0392831660209182029290920101526015546119079130911684610ed0565b6015546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac947906119589085905f90869030904290600401612061565b5f604051808303815f87803b15801561196f575f80fd5b505af1158015611981573d5f803e3d5ffd5b5050601680547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f1935050505015801561063d573d5f803e3d5ffd5b5f825f036119fb57505f6104cd565b5f611a068385611f5b565b905082611a1385836120d0565b14611a865760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016105b2565b9392505050565b5f611a8683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b81565b5f818311611adc5782611a86565b50919050565b5f80611aee838561203b565b905083811015611a865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105b2565b5f611a8683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061178f565b5f8183611ba15760405162461bcd60e51b81526004016105b29190611bad565b505f6117be84866120d0565b5f6020808352835180828501525f5b81811015611bd857858101830151858201604001528201611bbc565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b0381168114611c2a575f80fd5b50565b8035611c3881611c16565b919050565b5f8060408385031215611c4e575f80fd5b8235611c5981611c16565b946020939093013593505050565b5f805f60608486031215611c79575f80fd5b8335611c8481611c16565b92506020840135611c9481611c16565b929592945050506040919091013590565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f6020808385031215611ce3575f80fd5b823567ffffffffffffffff80821115611cfa575f80fd5b818501915085601f830112611d0d575f80fd5b813581811115611d1f57611d1f611ca5565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108582111715611d6257611d62611ca5565b604052918252848201925083810185019188831115611d7f575f80fd5b938501935b82851015611da457611d9585611c2d565b84529385019392850192611d84565b98975050505050505050565b5f60208284031215611dc0575f80fd5b8135611a8681611c16565b5f8060408385031215611ddc575f80fd5b8235611de781611c16565b91506020830135611df781611c16565b809150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b600181815b80851115611e8857817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611e6e57611e6e611e02565b80851615611e7b57918102915b93841c9390800290611e34565b509250929050565b5f82611e9e575060016104cd565b81611eaa57505f6104cd565b8160018114611ec05760028114611eca57611ee6565b60019150506104cd565b60ff841115611edb57611edb611e02565b50506001821b6104cd565b5060208310610133831016604e8410600b8410161715611f09575081810a6104cd565b611f138383611e2f565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611f4557611f45611e02565b029392505050565b5f611a8660ff841683611e90565b80820281158282048414176104cd576104cd611e02565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611fcf57611fcf611e02565b5060010190565b5f60208284031215611fe6575f80fd5b81518015158114611a86575f80fd5b5f60208284031215612005575f80fd5b8151611a8681611c16565b5f805f60608486031215612022575f80fd5b8351925060208401519150604084015190509250925092565b808201808211156104cd576104cd611e02565b818103818111156104cd576104cd611e02565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156120af5784516001600160a01b03168352938301939183019160010161208a565b50506001600160a01b03969096166060850152505050608001529392505050565b5f82612103577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220a4643098a47056bce52ced69f9ef8015ccc0c35e7c4e4b571ac921bd1b414bad64736f6c63430008140033

Deployed Bytecode

0x60806040526004361061017b575f3560e01c8063751039fc116100d1578063a9059cbb1161007c578063c9567bf911610057578063c9567bf914610446578063d34628cc1461045a578063dd62ed3e14610479575f80fd5b8063a9059cbb146103f9578063bf474bed14610418578063c876d0b91461042d575f80fd5b80638da5cb5b116100ac5780638da5cb5b146103795780638f9a55c01461039f57806395d89b41146103b4575f80fd5b8063751039fc146103315780637d1db4a5146103455780638637b0691461035a575f80fd5b8063313ce5671161013157806351bc3c851161010c57806351bc3c85146102d557806370a08231146102e9578063715018a61461031d575f80fd5b8063313ce5671461026257806331c2d8471461027d5780633bbac5791461029e575f80fd5b80630faee56f116101615780630faee56f1461020c57806318160ddd1461022f57806323b872dd14610243575f80fd5b806306fdde0314610186578063095ea7b3146101dd575f80fd5b3661018257005b5f80fd5b348015610191575f80fd5b5060408051808201909152600881527f4269626920322e3000000000000000000000000000000000000000000000000060208201525b6040516101d49190611bad565b60405180910390f35b3480156101e8575f80fd5b506101fc6101f7366004611c3d565b6104bd565b60405190151581526020016101d4565b348015610217575f80fd5b5061022160135481565b6040519081526020016101d4565b34801561023a575f80fd5b506102216104d3565b34801561024e575f80fd5b506101fc61025d366004611c67565b6104f6565b34801561026d575f80fd5b50604051600981526020016101d4565b348015610288575f80fd5b5061029c610297366004611cd2565b61055d565b005b3480156102a9575f80fd5b506101fc6102b8366004611db0565b6001600160a01b03165f9081526004602052604090205460ff1690565b3480156102e0575f80fd5b5061029c610641565b3480156102f4575f80fd5b50610221610303366004611db0565b6001600160a01b03165f9081526001602052604090205490565b348015610328575f80fd5b5061029c610693565b34801561033c575f80fd5b5061029c61074c565b348015610350575f80fd5b5061022160105481565b348015610365575f80fd5b5061029c610374366004611c3d565b61085e565b348015610384575f80fd5b505f546040516001600160a01b0390911681526020016101d4565b3480156103aa575f80fd5b5061022160115481565b3480156103bf575f80fd5b5060408051808201909152600781527f42494249322e300000000000000000000000000000000000000000000000000060208201526101c7565b348015610404575f80fd5b506101fc610413366004611c3d565b610935565b348015610423575f80fd5b5061022160125481565b348015610438575f80fd5b506006546101fc9060ff1681565b348015610451575f80fd5b5061029c610941565b348015610465575f80fd5b5061029c610474366004611cd2565b610df4565b348015610484575f80fd5b50610221610493366004611dcb565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f6104c9338484610ed0565b5060015b92915050565b5f6104e06009600a611f4d565b6104f190660ef2273c1b0800611f5b565b905090565b5f610502848484611027565b610553843361054e85604051806060016040528060288152602001612109602891396001600160a01b038a165f908152600260209081526040808320338452909152902054919061178f565b610ed0565b5060019392505050565b5f546001600160a01b031633146105bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b5f5b815181101561063d575f60045f8484815181106105dc576105dc611f72565b6020908102919091018101516001600160a01b031682528101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061063581611f9f565b9150506105bd565b5050565b60065461010090046001600160a01b0316336001600160a01b031614610665575f80fd5b305f90815260016020526040902054801561068357610683816117c7565b47801561063d5761063d816119b1565b5f546001600160a01b031633146106ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b2565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b5f546001600160a01b031633146107a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b2565b6107b16009600a611f4d565b6107c290660ef2273c1b0800611f5b565b6010556107d16009600a611f4d565b6107e290660ef2273c1b0800611f5b565b601155600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61083a6009600a611f4d565b61084b90660ef2273c1b0800611f5b565b60405190815260200160405180910390a1565b6001600160a01b0382166108a8576014546040516001600160a01b039091169082156108fc029083905f818181858888f193505050501580156108a3573d5f803e3d5ffd5b505050565b6014546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303815f875af1158015610911573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a39190611fd6565b5f6104c9338484611027565b5f546001600160a01b0316331461099a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b2565b60165474010000000000000000000000000000000000000000900460ff1615610a055760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105b2565b601580547fffffffffffffffffffffffff000000000000000000000000000000000000000016737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610a69903090610a586009600a611f4d565b61054e90660ef2273c1b0800611f5b565b60155f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ab9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610add9190611ff5565b6001600160a01b031663c9c653963060155f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b609190611ff5565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610bc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610be69190611ff5565b601680546001600160a01b039283167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790556015541663f305d7194730610c45816001600160a01b03165f9081526001602052604090205490565b5f80610c585f546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cd6573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610cfb9190612010565b50506016546015546040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248201529116915063095ea7b3906044016020604051808303815f875af1158015610d88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dac9190611fd6565b50601680547fffffffffffffffffff00ff00ffffffffffffffffffffffffffffffffffffffff1676010001000000000000000000000000000000000000000017905543600755565b5f546001600160a01b03163314610e4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b2565b5f5b815181101561063d57600160045f848481518110610e6f57610e6f611f72565b6020908102919091018101516001600160a01b031682528101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580610ec881611f9f565b915050610e4f565b6001600160a01b038316610f4b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105b2565b6001600160a01b038216610fc75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105b2565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110a35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105b2565b6001600160a01b03821661111f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105b2565b5f81116111945760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016105b2565b5f80546001600160a01b038581169116148015906111bf57505f546001600160a01b03848116911614155b15611652576001600160a01b0384165f9081526004602052604090205460ff1615801561120457506001600160a01b0383165f9081526004602052604090205460ff16155b61120c575f80fd5b6112386064611232600c54600f54116112275760085461122b565b600a545b85906119ec565b90611a8d565b60065490915060ff1615611332576015546001600160a01b0384811691161480159061127257506016546001600160a01b03848116911614155b1561133257325f9081526005602052604090205443116113205760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a4016105b2565b325f9081526005602052604090204390555b6016546001600160a01b03858116911614801561135d57506015546001600160a01b03848116911614155b801561138157506001600160a01b0383165f9081526003602052604090205460ff16155b15611488576010548211156113d85760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016105b2565b601154826113fa856001600160a01b03165f9081526001602052604090205490565b611404919061203b565b11156114525760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105b2565b436007546003611462919061203b565b111561147357823b15611473575f80fd5b600f8054905f61148283611f9f565b91905055505b6016546001600160a01b038481169116148015906114be57506001600160a01b0383165f9081526003602052604090205460ff16155b1561153d57601154826114e5856001600160a01b03165f9081526001602052604090205490565b6114ef919061203b565b111561153d5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105b2565b6016546001600160a01b03848116911614801561156357506001600160a01b0384163014155b156115905761158d6064611232600d54600f54116115835760095461122b565b600b5485906119ec565b90505b305f908152600160205260409020546016547501000000000000000000000000000000000000000000900460ff161580156115d857506016546001600160a01b038581169116145b80156116005750601654760100000000000000000000000000000000000000000000900460ff165b801561160d575060125481115b801561161c5750600e54600f54115b156116505761163e6116398461163484601354611ace565b611ace565b6117c7565b47801561164e5761164e476119b1565b505b505b80156116ca57305f908152600160205260409020546116719082611ae2565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116c19085815260200190565b60405180910390a35b6001600160a01b0384165f908152600160205260409020546116ec9083611b40565b6001600160a01b0385165f9081526001602052604090205561172f6117118383611b40565b6001600160a01b0385165f9081526001602052604090205490611ae2565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6117788585611b40565b60405190815260200160405180910390a350505050565b5f81848411156117b25760405162461bcd60e51b81526004016105b29190611bad565b505f6117be848661204e565b95945050505050565b601680547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061183a5761183a611f72565b6001600160a01b03928316602091820292909201810191909152601554604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156118aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ce9190611ff5565b816001815181106118e1576118e1611f72565b6001600160a01b0392831660209182029290920101526015546119079130911684610ed0565b6015546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac947906119589085905f90869030904290600401612061565b5f604051808303815f87803b15801561196f575f80fd5b505af1158015611981573d5f803e3d5ffd5b5050601680547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f1935050505015801561063d573d5f803e3d5ffd5b5f825f036119fb57505f6104cd565b5f611a068385611f5b565b905082611a1385836120d0565b14611a865760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016105b2565b9392505050565b5f611a8683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b81565b5f818311611adc5782611a86565b50919050565b5f80611aee838561203b565b905083811015611a865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105b2565b5f611a8683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061178f565b5f8183611ba15760405162461bcd60e51b81526004016105b29190611bad565b505f6117be84866120d0565b5f6020808352835180828501525f5b81811015611bd857858101830151858201604001528201611bbc565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b0381168114611c2a575f80fd5b50565b8035611c3881611c16565b919050565b5f8060408385031215611c4e575f80fd5b8235611c5981611c16565b946020939093013593505050565b5f805f60608486031215611c79575f80fd5b8335611c8481611c16565b92506020840135611c9481611c16565b929592945050506040919091013590565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f6020808385031215611ce3575f80fd5b823567ffffffffffffffff80821115611cfa575f80fd5b818501915085601f830112611d0d575f80fd5b813581811115611d1f57611d1f611ca5565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108582111715611d6257611d62611ca5565b604052918252848201925083810185019188831115611d7f575f80fd5b938501935b82851015611da457611d9585611c2d565b84529385019392850192611d84565b98975050505050505050565b5f60208284031215611dc0575f80fd5b8135611a8681611c16565b5f8060408385031215611ddc575f80fd5b8235611de781611c16565b91506020830135611df781611c16565b809150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b600181815b80851115611e8857817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611e6e57611e6e611e02565b80851615611e7b57918102915b93841c9390800290611e34565b509250929050565b5f82611e9e575060016104cd565b81611eaa57505f6104cd565b8160018114611ec05760028114611eca57611ee6565b60019150506104cd565b60ff841115611edb57611edb611e02565b50506001821b6104cd565b5060208310610133831016604e8410600b8410161715611f09575081810a6104cd565b611f138383611e2f565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611f4557611f45611e02565b029392505050565b5f611a8660ff841683611e90565b80820281158282048414176104cd576104cd611e02565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611fcf57611fcf611e02565b5060010190565b5f60208284031215611fe6575f80fd5b81518015158114611a86575f80fd5b5f60208284031215612005575f80fd5b8151611a8681611c16565b5f805f60608486031215612022575f80fd5b8351925060208401519150604084015190509250925092565b808201808211156104cd576104cd611e02565b818103818111156104cd576104cd611e02565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156120af5784516001600160a01b03168352938301939183019160010161208a565b50506001600160a01b03969096166060850152505050608001529392505050565b5f82612103577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220a4643098a47056bce52ced69f9ef8015ccc0c35e7c4e4b571ac921bd1b414bad64736f6c63430008140033

Deployed Bytecode Sourcemap

7747:9442:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9827:83;;;;;;;;;;-1:-1:-1;9897:5:0;;;;;;;;;;;;;;;;;9827:83;;;;;;;:::i;:::-;;;;;;;;10660:161;;;;;;;;;;-1:-1:-1;10660:161:0;;;;;:::i;:::-;;:::i;:::-;;;1409:14:1;;1402:22;1384:41;;1372:2;1357:18;10660:161:0;1244:187:1;9013:64:0;;;;;;;;;;;;;;;;;;;1582:25:1;;;1570:2;1555:18;9013:64:0;1436:177:1;10104:95:0;;;;;;;;;;;;;:::i;10829:313::-;;;;;;;;;;-1:-1:-1;10829:313:0;;;;;:::i;:::-;;:::i;10013:83::-;;;;;;;;;;-1:-1:-1;10013:83:0;;8603:1;2221:36:1;;2209:2;2194:18;10013:83:0;2079:184:1;15539:162:0;;;;;;;;;;-1:-1:-1;15539:162:0;;;;;:::i;:::-;;:::i;:::-;;15709:83;;;;;;;;;;-1:-1:-1;15709:83:0;;;;;:::i;:::-;-1:-1:-1;;;;;15777:7:0;15756:4;15777:7;;;:4;:7;;;;;;;;;15709:83;16838:348;;;;;;;;;;;;;:::i;10207:119::-;;;;;;;;;;-1:-1:-1;10207:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;10300:18:0;10273:7;10300:18;;;:9;:18;;;;;;;10207:119;6828:148;;;;;;;;;;;;;:::i;15055:204::-;;;;;;;;;;;;;:::i;8798:65::-;;;;;;;;;;;;;;;;15800:278;;;;;;;;;;-1:-1:-1;15800:278:0;;;;;:::i;:::-;;:::i;6614:79::-;;;;;;;;;;-1:-1:-1;6652:7:0;6679:6;6614:79;;-1:-1:-1;;;;;6679:6:0;;;4040:74:1;;4028:2;4013:18;6614:79:0;3894:226:1;8870:65:0;;;;;;;;;;;;;;;;9918:87;;;;;;;;;;-1:-1:-1;9990:7:0;;;;;;;;;;;;;;;;;9918:87;;10334:167;;;;;;;;;;-1:-1:-1;10334:167:0;;;;;:::i;:::-;;:::i;8942:64::-;;;;;;;;;;;;;;;;8135:39;;;;;;;;;;-1:-1:-1;8135:39:0;;;;;;;;16086:707;;;;;;;;;;;;;:::i;15367:164::-;;;;;;;;;;-1:-1:-1;15367:164:0;;;;;:::i;:::-;;:::i;10509:143::-;;;;;;;;;;-1:-1:-1;10509:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;10617:18:0;;;10590:7;10617:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10509:143;10660:161;10735:4;10752:39;4449:10;10775:7;10784:6;10752:8;:39::i;:::-;-1:-1:-1;10809:4:0;10660:161;;;;;:::o;10104:95::-;10157:7;8665:13;8603:1;8665:2;:13;:::i;:::-;8646:32;;:16;:32;:::i;:::-;10177:14;;10104:95;:::o;10829:313::-;10927:4;10944:36;10954:6;10962:9;10973:6;10944:9;:36::i;:::-;10991:121;11000:6;4449:10;11022:89;11060:6;11022:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11022:19:0;;;;;;:11;:19;;;;;;;;4449:10;11022:33;;;;;;;;;;:37;:89::i;:::-;10991:8;:121::i;:::-;-1:-1:-1;11130:4:0;10829:313;;;;;:::o;15539:162::-;6741:6;;-1:-1:-1;;;;;6741:6:0;4449:10;6741:22;6733:67;;;;-1:-1:-1;;;6733:67:0;;6585:2:1;6733:67:0;;;6567:21:1;;;6604:18;;;6597:30;6663:34;6643:18;;;6636:62;6715:18;;6733:67:0;;;;;;;;;15612:6:::1;15607:87;15628:6;:13;15624:1;:17;15607:87;;;15679:5;15661:4;:15;15666:6;15673:1;15666:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;15661:15:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;15661:15:0;:23;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;15643:3;::::1;::::0;::::1;:::i;:::-;;;;15607:87;;;;15539:162:::0;:::o;16838:348::-;16902:10;;;;;-1:-1:-1;;;;;16902:10:0;4449;-1:-1:-1;;;;;16888:24:0;;16880:33;;;;;;16963:4;16924:20;10300:18;;;:9;:18;;;;;;16983:14;;16980:73;;17011:30;17028:12;17011:16;:30::i;:::-;17082:21;17117:12;;17114:65;;17143:24;17156:10;17143:12;:24::i;6828:148::-;6741:6;;-1:-1:-1;;;;;6741:6:0;4449:10;6741:22;6733:67;;;;-1:-1:-1;;;6733:67:0;;6585:2:1;6733:67:0;;;6567:21:1;;;6604:18;;;6597:30;6663:34;6643:18;;;6636:62;6715:18;;6733:67:0;6383:356:1;6733:67:0;6935:1:::1;6919:6:::0;;6898:40:::1;::::0;-1:-1:-1;;;;;6919:6:0;;::::1;::::0;6898:40:::1;::::0;6935:1;;6898:40:::1;6966:1;6949:19:::0;;;::::1;::::0;;6828:148::o;15055:204::-;6741:6;;-1:-1:-1;;;;;6741:6:0;4449:10;6741:22;6733:67;;;;-1:-1:-1;;;6733:67:0;;6585:2:1;6733:67:0;;;6567:21:1;;;6604:18;;;6597:30;6663:34;6643:18;;;6636:62;6715:18;;6733:67:0;6383:356:1;6733:67:0;8665:13:::1;8603:1;8665:2;:13;:::i;:::-;8646:32;::::0;:16:::1;:32;:::i;:::-;15108:12;:22:::0;8665:13:::1;8603:1;8665:2;:13;:::i;:::-;8646:32;::::0;:16:::1;:32;:::i;:::-;15141:14;:22:::0;15174:20:::1;:26:::0;;;::::1;::::0;;15224:27:::1;8665:13;8603:1;8665:2;:13;:::i;:::-;8646:32;::::0;:16:::1;:32;:::i;:::-;15224:27;::::0;1582:25:1;;;1570:2;1555:18;15224:27:0::1;;;;;;;15055:204::o:0;15800:278::-;-1:-1:-1;;;;;15883:26:0;;15879:192;;15933:19;;15925:45;;-1:-1:-1;;;;;15933:19:0;;;;15925:45;;;;;15963:6;;15933:19;15925:45;15933:19;15925:45;15963:6;15933:19;15925:45;;;;;;;;;;;;;;;;;;;;;15607:87:::1;15539:162:::0;:::o;15879:192::-;16031:19;;16001:58;;;;;-1:-1:-1;;;;;16031:19:0;;;16001:58;;;7315:74:1;7405:18;;;7398:34;;;16001:29:0;;;;;;7288:18:1;;16001:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10334:167::-;10412:4;10429:42;4449:10;10453:9;10464:6;10429:9;:42::i;16086:707::-;6741:6;;-1:-1:-1;;;;;6741:6:0;4449:10;6741:22;6733:67;;;;-1:-1:-1;;;6733:67:0;;6585:2:1;6733:67:0;;;6567:21:1;;;6604:18;;;6597:30;6663:34;6643:18;;;6636:62;6715:18;;6733:67:0;6383:356:1;6733:67:0;16150:11:::1;::::0;;;::::1;;;16149:12;16141:47;;;::::0;-1:-1:-1;;;16141:47:0;;7927:2:1;16141:47:0::1;::::0;::::1;7909:21:1::0;7966:2;7946:18;;;7939:30;8005:25;7985:18;;;7978:53;8048:18;;16141:47:0::1;7725:347:1::0;16141:47:0::1;16199:15;:80:::0;;;::::1;16236:42;16199:80:::0;;::::1;::::0;;;16290:58:::1;::::0;16307:4:::1;::::0;8665:13:::1;8603:1;8665:2;:13;:::i;:::-;8646:32;::::0;:16:::1;:32;:::i;16290:58::-;16393:15;;;;;;;;;-1:-1:-1::0;;;;;16393:15:0::1;-1:-1:-1::0;;;;;16393:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;16375:55:0::1;;16439:4;16446:15;;;;;;;;;-1:-1:-1::0;;;;;16446:15:0::1;-1:-1:-1::0;;;;;16446:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16375:94;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;8586:15:1;;;16375:94:0::1;::::0;::::1;8568:34:1::0;8638:15;;8618:18;;;8611:43;8480:18;;16375:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16359:13;:110:::0;;-1:-1:-1;;;;;16359:110:0;;::::1;::::0;;;::::1;;::::0;;16480:15:::1;::::0;::::1;:31;16519:21;16550:4;16556:24;16550:4:::0;-1:-1:-1;;;;;10300:18:0;10273:7;10300:18;;;:9;:18;;;;;;;10207:119;16556:24:::1;16581:1;16583::::0;16585:7:::1;6652::::0;6679:6;-1:-1:-1;;;;;6679:6:0;;6614:79;16585:7:::1;16480:129;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;9047:15:1;;;16480:129:0::1;::::0;::::1;9029:34:1::0;9079:18;;;9072:34;;;;9122:18;;;9115:34;;;;9165:18;;;9158:34;9229:15;;;9208:19;;;9201:44;16593:15:0::1;9261:19:1::0;;;9254:35;8940:19;;16480:129:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;16627:13:0::1;::::0;16658:15:::1;::::0;16620:71:::1;::::0;;;;-1:-1:-1;;;;;16658:15:0;;::::1;16620:71;::::0;::::1;7315:74:1::0;16676:14:0::1;7405:18:1::0;;;7398:34;16627:13:0;::::1;::::0;-1:-1:-1;16620:29:0::1;::::0;7288:18:1;;16620:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;16702:11:0::1;:18:::0;;16731;;;;;;16773:12:::1;16760:10;:25:::0;16086:707::o;15367:164::-;6741:6;;-1:-1:-1;;;;;6741:6:0;4449:10;6741:22;6733:67;;;;-1:-1:-1;;;6733:67:0;;6585:2:1;6733:67:0;;;6567:21:1;;;6604:18;;;6597:30;6663:34;6643:18;;;6636:62;6715:18;;6733:67:0;6383:356:1;6733:67:0;15441:6:::1;15436:88;15457:5;:12;15453:1;:16;15436:88;;;15508:4;15491;:14;15496:5;15502:1;15496:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;15491:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;15491:14:0;:21;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;15471:3;::::1;::::0;::::1;:::i;:::-;;;;15436:88;;11150:335:::0;-1:-1:-1;;;;;11243:19:0;;11235:68;;;;-1:-1:-1;;;11235:68:0;;10115:2:1;11235:68:0;;;10097:21:1;10154:2;10134:18;;;10127:30;10193:34;10173:18;;;10166:62;10264:6;10244:18;;;10237:34;10288:19;;11235:68:0;9913:400:1;11235:68:0;-1:-1:-1;;;;;11322:21:0;;11314:68;;;;-1:-1:-1;;;11314:68:0;;10520:2:1;11314:68:0;;;10502:21:1;10559:2;10539:18;;;10532:30;10598:34;10578:18;;;10571:62;10669:4;10649:18;;;10642:32;10691:19;;11314:68:0;10318:398:1;11314:68:0;-1:-1:-1;;;;;11393:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11445:32;;1582:25:1;;;11445:32:0;;1555:18:1;11445:32:0;;;;;;;11150:335;;;:::o;11493:2752::-;-1:-1:-1;;;;;11581:18:0;;11573:68;;;;-1:-1:-1;;;11573:68:0;;10923:2:1;11573:68:0;;;10905:21:1;10962:2;10942:18;;;10935:30;11001:34;10981:18;;;10974:62;11072:7;11052:18;;;11045:35;11097:19;;11573:68:0;10721:401:1;11573:68:0;-1:-1:-1;;;;;11660:16:0;;11652:64;;;;-1:-1:-1;;;11652:64:0;;11329:2:1;11652:64:0;;;11311:21:1;11368:2;11348:18;;;11341:30;11407:34;11387:18;;;11380:62;11478:5;11458:18;;;11451:33;11501:19;;11652:64:0;11127:399:1;11652:64:0;11744:1;11735:6;:10;11727:64;;;;-1:-1:-1;;;11727:64:0;;11733:2:1;11727:64:0;;;11715:21:1;11772:2;11752:18;;;11745:30;11811:34;11791:18;;;11784:62;11882:11;11862:18;;;11855:39;11911:19;;11727:64:0;11531:405:1;11727:64:0;11802:17;6679:6;;-1:-1:-1;;;;;11836:15:0;;;6679:6;;11836:15;;;;:32;;-1:-1:-1;6652:7:0;6679:6;-1:-1:-1;;;;;11855:13:0;;;6679:6;;11855:13;;11836:32;11832:2057;;;-1:-1:-1;;;;;11894:10:0;;;;;;:4;:10;;;;;;;;11893:11;:24;;;;-1:-1:-1;;;;;;11909:8:0;;;;;;:4;:8;;;;;;;;11908:9;11893:24;11885:33;;;;;;11945:76;12017:3;11945:67;11967:15;;11957:9;;:25;11956:55;;11997:14;;11956:55;;;11984:12;;11956:55;11945:6;;:10;:67::i;:::-;:71;;:76::i;:::-;12042:20;;11933:88;;-1:-1:-1;12042:20:0;;12038:508;;;12103:15;;-1:-1:-1;;;;;12089:30:0;;;12103:15;;12089:30;;;;:62;;-1:-1:-1;12137:13:0;;-1:-1:-1;;;;;12123:28:0;;;12137:13;;12123:28;;12089:62;12085:444;;;12243:9;12214:39;;;;:28;:39;;;;;;12287:12;-1:-1:-1;12178:250:0;;;;-1:-1:-1;;;12178:250:0;;12143:2:1;12178:250:0;;;12125:21:1;12182:2;12162:18;;;12155:30;12221:34;12201:18;;;12194:62;12292:34;12272:18;;;12265:62;12364:11;12343:19;;;12336:40;12393:19;;12178:250:0;11941:477:1;12178:250:0;12482:9;12453:39;;;;:28;:39;;;;;12495:12;12453:54;;12085:444;12574:13;;-1:-1:-1;;;;;12566:21:0;;;12574:13;;12566:21;:55;;;;-1:-1:-1;12605:15:0;;-1:-1:-1;;;;;12591:30:0;;;12605:15;;12591:30;;12566:55;:83;;;;-1:-1:-1;;;;;;12627:22:0;;;;;;:18;:22;;;;;;;;12625:24;12566:83;12562:436;;;12689:12;;12679:6;:22;;12671:60;;;;-1:-1:-1;;;12671:60:0;;12625:2:1;12671:60:0;;;12607:21:1;12664:2;12644:18;;;12637:30;12703:27;12683:18;;;12676:55;12748:18;;12671:60:0;12423:349:1;12671:60:0;12784:14;;12774:6;12758:13;12768:2;-1:-1:-1;;;;;10300:18:0;10273:7;10300:18;;;:9;:18;;;;;;;10207:119;12758:13;:22;;;;:::i;:::-;:40;;12750:79;;;;-1:-1:-1;;;12750:79:0;;13109:2:1;12750:79:0;;;13091:21:1;13148:2;13128:18;;;13121:30;13187:28;13167:18;;;13160:56;13233:18;;12750:79:0;12907:350:1;12750:79:0;12872:12;12854:10;;12867:1;12854:14;;;;:::i;:::-;:30;12850:103;;;14492:20;;14540:8;12909:24;;;;;;12971:9;:11;;;:9;:11;;;:::i;:::-;;;;;;12562:436;13024:13;;-1:-1:-1;;;;;13018:19:0;;;13024:13;;13018:19;;;;:47;;-1:-1:-1;;;;;;13043:22:0;;;;;;:18;:22;;;;;;;;13041:24;13018:47;13014:167;;;13120:14;;13110:6;13094:13;13104:2;-1:-1:-1;;;;;10300:18:0;10273:7;10300:18;;;:9;:18;;;;;;;10207:119;13094:13;:22;;;;:::i;:::-;:40;;13086:79;;;;-1:-1:-1;;;13086:79:0;;13109:2:1;13086:79:0;;;13091:21:1;13148:2;13128:18;;;13121:30;13187:28;13167:18;;;13160:56;13233:18;;13086:79:0;12907:350:1;13086:79:0;13206:13;;-1:-1:-1;;;;;13200:19:0;;;13206:13;;13200:19;:43;;;;-1:-1:-1;;;;;;13223:20:0;;13238:4;13223:20;;13200:43;13197:174;;;13276:79;13351:3;13276:70;13298:16;;13288:9;;:26;13287:58;;13330:15;;13287:58;;;13316:13;;13276:6;;:10;:70::i;:79::-;13264:91;;13197:174;13436:4;13387:28;10300:18;;;:9;:18;;;;;;13462:6;;;;;;;13461:7;:32;;;;-1:-1:-1;13480:13:0;;-1:-1:-1;;;;;13472:21:0;;;13480:13;;13472:21;13461:32;:47;;;;-1:-1:-1;13497:11:0;;;;;;;13461:47;:89;;;;;13533:17;;13512:20;:38;13461:89;:121;;;;;13564:18;;13554:9;;:28;13461:121;13457:421;;;13603:67;13620:49;13624:6;13631:37;13635:20;13656:11;;13631:3;:37::i;:::-;13620:3;:49::i;:::-;13603:16;:67::i;:::-;13718:21;13761:22;;13758:105;;13808:35;13821:21;13808:12;:35::i;:::-;13584:294;13457:421;11870:2019;11832:2057;13904:11;;13901:161;;13972:4;13954:24;;;;:9;:24;;;;;;:39;;13983:9;13954:28;:39::i;:::-;13947:4;13929:24;;;;:9;:24;;;;;;;:64;;;;14011:39;;-1:-1:-1;;;;;14011:39:0;;;;;;;14040:9;1582:25:1;;1570:2;1555:18;;1436:177;14011:39:0;;;;;;;;13901:161;-1:-1:-1;;;;;14088:15:0;;;;;;:9;:15;;;;;;:27;;14108:6;14088:19;:27::i;:::-;-1:-1:-1;;;;;14072:15:0;;;;;;:9;:15;;;;;:43;14140:40;14158:21;:6;14169:9;14158:10;:21::i;:::-;-1:-1:-1;;;;;14140:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;14126:13:0;;;;;;;:9;:13;;;;;:54;;;;14196:41;;;14215:21;:6;14226:9;14215:10;:21::i;:::-;14196:41;;1582:25:1;;;1570:2;1555:18;14196:41:0;;;;;;;11562:2683;11493:2752;;;:::o;5506:190::-;5592:7;5628:12;5620:6;;;;5612:29;;;;-1:-1:-1;;;5612:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5652:9:0;5664:5;5668:1;5664;:5;:::i;:::-;5652:17;5506:190;-1:-1:-1;;;;;5506:190:0:o;14564:483::-;9434:6;:13;;;;;;;;14666:16:::1;::::0;;14680:1:::1;14666:16:::0;;;;;::::1;::::0;;-1:-1:-1;;14666:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;14666:16:0::1;14642:40;;14711:4;14693;14698:1;14693:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;14693:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;14737:15:::1;::::0;:22:::1;::::0;;;;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;14693:7;;14737:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14727:4;14732:1;14727:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;14727:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;14802:15:::1;::::0;14770:62:::1;::::0;14787:4:::1;::::0;14802:15:::1;14820:11:::0;14770:8:::1;:62::i;:::-;14843:15;::::0;:196:::1;::::0;;;;-1:-1:-1;;;;;14843:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;14924:11;;14843:15:::1;::::0;14966:4;;14993::::1;::::0;15013:15:::1;::::0;14843:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;9470:6:0;:14;;;;;;-1:-1:-1;;;;14564:483:0:o;15267:92::-;15324:10;;:27;;:10;;;;-1:-1:-1;;;;;15324:10:0;;:27;;;;;;;;;;;;:10;:27;;;;;;;;;;;;;;;;;;;5704:246;5762:7;5786:1;5791;5786:6;5782:47;;-1:-1:-1;5816:1:0;5809:8;;5782:47;5839:9;5851:5;5855:1;5851;:5;:::i;:::-;5839:17;-1:-1:-1;5884:1:0;5875:5;5879:1;5839:17;5875:5;:::i;:::-;:10;5867:56;;;;-1:-1:-1;;;5867:56:0;;14907:2:1;5867:56:0;;;14889:21:1;14946:2;14926:18;;;14919:30;14985:34;14965:18;;;14958:62;15056:3;15036:18;;;15029:31;15077:19;;5867:56:0;14705:397:1;5867:56:0;5941:1;5704:246;-1:-1:-1;;;5704:246:0:o;5958:132::-;6016:7;6043:39;6047:1;6050;6043:39;;;;;;;;;;;;;;;;;:3;:39::i;14255:98::-;14312:7;14339:1;14337;:3;14336:9;;14344:1;14336:9;;;-1:-1:-1;14342:1:0;14255:98;-1:-1:-1;14255:98:0:o;5175:179::-;5233:7;;5265:5;5269:1;5265;:5;:::i;:::-;5253:17;;5294:1;5289;:6;;5281:46;;;;-1:-1:-1;;;5281:46:0;;15309:2:1;5281:46:0;;;15291:21:1;15348:2;15328:18;;;15321:30;15387:29;15367:18;;;15360:57;15434:18;;5281:46:0;15107:351:1;5362:136:0;5420:7;5447:43;5451:1;5454;5447:43;;;;;;;;;;;;;;;;;:3;:43::i;6098:189::-;6184:7;6219:12;6212:5;6204:28;;;;-1:-1:-1;;;6204:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6243:9:0;6255:5;6259:1;6255;:5;:::i;14:607: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;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:154::-;-1:-1:-1;;;;;705:5:1;701:54;694:5;691:65;681:93;;770:1;767;760:12;681:93;626:154;:::o;785:134::-;853:20;;882:31;853:20;882:31;:::i;:::-;785:134;;;:::o;924:315::-;992:6;1000;1053:2;1041:9;1032:7;1028:23;1024:32;1021:52;;;1069:1;1066;1059:12;1021:52;1108:9;1095:23;1127:31;1152:5;1127:31;:::i;:::-;1177:5;1229:2;1214:18;;;;1201:32;;-1:-1:-1;;;924:315:1:o;1618:456::-;1695:6;1703;1711;1764:2;1752:9;1743:7;1739:23;1735:32;1732:52;;;1780:1;1777;1770:12;1732:52;1819:9;1806:23;1838:31;1863:5;1838:31;:::i;:::-;1888:5;-1:-1:-1;1945:2:1;1930:18;;1917:32;1958:33;1917:32;1958:33;:::i;:::-;1618:456;;2010:7;;-1:-1:-1;;;2064:2:1;2049:18;;;;2036:32;;1618:456::o;2268:184::-;2320:77;2317:1;2310:88;2417:4;2414:1;2407:15;2441:4;2438:1;2431:15;2457:1180;2541:6;2572:2;2615;2603:9;2594:7;2590:23;2586:32;2583:52;;;2631:1;2628;2621:12;2583:52;2671:9;2658:23;2700:18;2741:2;2733:6;2730:14;2727:34;;;2757:1;2754;2747:12;2727:34;2795:6;2784:9;2780:22;2770:32;;2840:7;2833:4;2829:2;2825:13;2821:27;2811:55;;2862:1;2859;2852:12;2811:55;2898:2;2885:16;2920:2;2916;2913:10;2910:36;;;2926:18;;:::i;:::-;2972:2;2969:1;2965:10;3004:2;2998:9;3063:66;3058:2;3054;3050:11;3046:84;3038:6;3034:97;3181:6;3169:10;3166:22;3161:2;3149:10;3146:18;3143:46;3140:72;;;3192:18;;:::i;:::-;3228:2;3221:22;3278:18;;;3312:15;;;;-1:-1:-1;3354:11:1;;;3350:20;;;3382:19;;;3379:39;;;3414:1;3411;3404:12;3379:39;3438:11;;;;3458:148;3474:6;3469:3;3466:15;3458:148;;;3540:23;3559:3;3540:23;:::i;:::-;3528:36;;3491:12;;;;3584;;;;3458:148;;;3625:6;2457:1180;-1:-1:-1;;;;;;;;2457:1180:1:o;3642:247::-;3701:6;3754:2;3742:9;3733:7;3729:23;3725:32;3722:52;;;3770:1;3767;3760:12;3722:52;3809:9;3796:23;3828:31;3853:5;3828:31;:::i;4125:388::-;4193:6;4201;4254:2;4242:9;4233:7;4229:23;4225:32;4222:52;;;4270:1;4267;4260:12;4222:52;4309:9;4296:23;4328:31;4353:5;4328:31;:::i;:::-;4378:5;-1:-1:-1;4435:2:1;4420:18;;4407:32;4448:33;4407:32;4448:33;:::i;:::-;4500:7;4490:17;;;4125:388;;;;;:::o;4518:184::-;4570:77;4567:1;4560:88;4667:4;4664:1;4657:15;4691:4;4688:1;4681:15;4707:482;4796:1;4839:5;4796:1;4853:330;4874:7;4864:8;4861:21;4853:330;;;4993:4;4925:66;4921:77;4915:4;4912:87;4909:113;;;5002:18;;:::i;:::-;5052:7;5042:8;5038:22;5035:55;;;5072:16;;;;5035:55;5151:22;;;;5111:15;;;;4853:330;;;4857:3;4707:482;;;;;:::o;5194:866::-;5243:5;5273:8;5263:80;;-1:-1:-1;5314:1:1;5328:5;;5263:80;5362:4;5352:76;;-1:-1:-1;5399:1:1;5413:5;;5352:76;5444:4;5462:1;5457:59;;;;5530:1;5525:130;;;;5437:218;;5457:59;5487:1;5478:10;;5501:5;;;5525:130;5562:3;5552:8;5549:17;5546:43;;;5569:18;;:::i;:::-;-1:-1:-1;;5625:1:1;5611:16;;5640:5;;5437:218;;5739:2;5729:8;5726:16;5720:3;5714:4;5711:13;5707:36;5701:2;5691:8;5688:16;5683:2;5677:4;5674:12;5670:35;5667:77;5664:159;;;-1:-1:-1;5776:19:1;;;5808:5;;5664:159;5855:34;5880:8;5874:4;5855:34;:::i;:::-;5985:6;5917:66;5913:79;5904:7;5901:92;5898:118;;;5996:18;;:::i;:::-;6034:20;;5194:866;-1:-1:-1;;;5194:866:1:o;6065:140::-;6123:5;6152:47;6193:4;6183:8;6179:19;6173:4;6152:47;:::i;6210:168::-;6283:9;;;6314;;6331:15;;;6325:22;;6311:37;6301:71;;6352:18;;:::i;6744:184::-;6796:77;6793:1;6786:88;6893:4;6890:1;6883:15;6917:4;6914:1;6907:15;6933:195;6972:3;7003:66;6996:5;6993:77;6990:103;;7073:18;;:::i;:::-;-1:-1:-1;7120:1:1;7109:13;;6933:195::o;7443:277::-;7510:6;7563:2;7551:9;7542:7;7538:23;7534:32;7531:52;;;7579:1;7576;7569:12;7531:52;7611:9;7605:16;7664:5;7657:13;7650:21;7643:5;7640:32;7630:60;;7686:1;7683;7676:12;8077:251;8147:6;8200:2;8188:9;8179:7;8175:23;8171:32;8168:52;;;8216:1;8213;8206:12;8168:52;8248:9;8242:16;8267:31;8292:5;8267:31;:::i;9300:306::-;9388:6;9396;9404;9457:2;9445:9;9436:7;9432:23;9428:32;9425:52;;;9473:1;9470;9463:12;9425:52;9502:9;9496:16;9486:26;;9552:2;9541:9;9537:18;9531:25;9521:35;;9596:2;9585:9;9581:18;9575:25;9565:35;;9300:306;;;;;:::o;12777:125::-;12842:9;;;12863:10;;;12860:36;;;12876:18;;:::i;13262:128::-;13329:9;;;13350:11;;;13347:37;;;13364:18;;:::i;13395:1026::-;13657:4;13705:3;13694:9;13690:19;13736:6;13725:9;13718:25;13762:2;13800:6;13795:2;13784:9;13780:18;13773:34;13843:3;13838:2;13827:9;13823:18;13816:31;13867:6;13902;13896:13;13933:6;13925;13918:22;13971:3;13960:9;13956:19;13949:26;;14010:2;14002:6;13998:15;13984:29;;14031:1;14041:218;14055:6;14052:1;14049:13;14041:218;;;14120:13;;-1:-1:-1;;;;;14116:62:1;14104:75;;14234:15;;;;14199:12;;;;14077:1;14070:9;14041:218;;;-1:-1:-1;;;;;;;14315:55:1;;;;14310:2;14295:18;;14288:83;-1:-1:-1;;;14402:3:1;14387:19;14380:35;14276:3;13395:1026;-1:-1:-1;;;13395:1026:1:o;14426:274::-;14466:1;14492;14482:189;;14527:77;14524:1;14517:88;14628:4;14625:1;14618:15;14656:4;14653:1;14646:15;14482:189;-1:-1:-1;14685:9:1;;14426:274::o

Swarm Source

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