ETH Price: $2,462.04 (+2.63%)

BTC-Bulldog NFT (BitDog-NFT)
 

Overview

TokenID

345

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
autostakingSecondary

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 19 of 20: selfautostaking.sol
//SPDX-License-Identifier: Copyright Grobat
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./ERC721Pausable.sol";
import "./ERC721URIStorage.sol";
import "./AccessControlEnumerable.sol";
import "./Context.sol";
import "./Strings.sol";
import "./Counters.sol";



interface IBEP20 {
    function totalSupply() external view returns (uint256);
    function decimals() external view returns (uint8);
    function symbol() external view returns (string memory);
    function name() external view returns (string memory);
    function getOwner() external view returns (address);
    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);
}

interface IDEXRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

interface IDividendDistributor {
    function addShare(address shareholder) external payable;
    function deposit() external payable;
    function process(uint256 gas) external;
    function getUnpaidEarnings(address autostakingcontract) external view returns (uint256);
    function distributeToken() external;
    function setContractInitial(address contadmin) external payable;
    function setMintedOut(address mintedOutContract)external;
    function addMintingShare(address NftContract) external payable;
}

interface IAutostakingContract {
    function getMaxSupply() external view returns (uint max);
    function getMinted() external view returns (uint minted);
    function getStoragePrice() external view  returns (uint storagePrice);
    function getMintPrice() external view returns (uint mintPrice);
    function addTokenToBuy(address TokenToAdd, uint percent) external;
    function setFeeReciever(address reciever)external;
    function excludeFromrewardMultiple(address[] calldata Adds) external;
    function getReflectionBalances() external view returns(uint256);
    function claimRewards() external;
    function recoverStuckToken (IBEP20 token) external;
    function claimTokens () external;
    function mintMany(uint256 quantity) external payable;
    function setMintingEnabled(bool Allowed) external;
    function claimRewardsInToken() external;
    function deposit()external payable;
}

/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - token ID and URI autogenerationA
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract autostakingSecondary is Context, AccessControlEnumerable, ERC721Enumerable, ERC721URIStorage, IAutostakingContract{
  using Counters for Counters.Counter;

  struct  buyableTokens{
    address buyableToken;
    uint256 percentage;
  }

  struct  wallets{
    address walletAddress;

    uint256 percentage;
  }
  
  
  Counters.Counter public _tokenIdTracker;

  string private _baseTokenURI;
  string public _contractMeta;
  uint private _tokenPrice = 25 * 10**16;
  uint private _price = 1 * 10**16; 
  uint public maxSupply = 1000;
  address private _admin;
  address public _feeReciever;
  uint256 public _distributorFee = 10; // 10% static;
  IDEXRouter public router;
  bool public canMint = false;
  uint public mintPercentage;
  uint256 public totalReflectionVolume;
  uint256 public totalCollected;
  uint256 public artistPercent = 3;
  uint256 devpercent = 2;
  uint256 public reflectPercent = 25;
  bool public isAutostaking = true;
  address WETH;
  address deadAddress = 0x000000000000000000000000000000000000dEaD;
  address public artistFeeReciever = 0x08f5bCD7421Fc071E7A916Ed77003B1cf78F6fAa;
  address public devFeeReciever = 0x3A0Cb1D6B195Ea497B060Cc99A292E37E5D27529;
  address public marketingReciever;
  
  buyableTokens[] public tokensToBuy;
  wallets[] public walletsToSend;
  
  uint256 public reflectionBalance;
  uint256 public totalDividend;

  mapping(uint256 => uint256) lastDividendAt;
  mapping (uint256 => address ) public creator;
  mapping (address => bool) public excludedFromRewards; 

  uint256 private mintAMount = 100;
  uint256 public totalrewards = 0;



  constructor(string memory name, string memory symbol, uint mintPrice, address admin, uint max) ERC721(name, symbol) {
      _tokenPrice = mintPrice;
      maxSupply = max;
      _admin = admin;
      router = IDEXRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Mainnet
      _setupRole(DEFAULT_ADMIN_ROLE, admin);
      _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
      WETH = address(router.WETH());
  }

  receive () external payable {
    if(_tokenIdTracker.current() >= maxSupply){
      payable(marketingReciever).transfer(msg.value * 20 /100);
      reflectDividend(msg.value * 80 /100);
    }
  }

  function contractURI() public view returns (string memory) {
        return _contractMeta;
  }

  function SetcontractURI(string calldata URI) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: only the distributor can add this meta");
        _contractMeta = URI;
  }

  function getMinted() external view override returns (uint minted){
    return _tokenIdTracker.current();
  }

  function getMaxSupply() external view override returns (uint max){
    return maxSupply;
  }


  function getStoragePrice() external view override returns (uint storagePrice){
    return _price;
  }

  function getMintPrice() external view override returns (uint mintPrice){
    return _tokenPrice;
  }

  function setAdditionalAdmin(address newAdmin) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to add admins");
    _setupRole(DEFAULT_ADMIN_ROLE, newAdmin);
  } 


  function excludeFromrewardMultiple(address[] calldata Adds) external override {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have distributor role to add exclusions");
    for(uint i = 0; i< Adds.length; i++){
      excludedFromRewards[Adds[i]] = true;
    }
  } 

  function _baseURI() internal view virtual override returns (string memory) {
      return _baseTokenURI;
  }

   function setFeeReciever(address reciever)public override {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to change fee reciever");
    _feeReciever = reciever;
  }

  function setBaseURI(string memory baseURI) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to change base URI");
    _baseTokenURI = baseURI;
  }

  function setTokenURI(uint256 tokenId, string memory _tokenURI) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to change token URI");
    _setTokenURI(tokenId, _tokenURI);
  }

  function setMintingEnabled(bool Allowed) external override {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to change minting ability");
    canMint = Allowed;
  }


  function getServiceFee() external view returns(uint256){
    return _price;
  }
 
   function mint() external payable {
    require(canMint, "autostaking: minting currently disabled");
    require(msg.value >= (_tokenPrice), "autostaking: must send correct price");
    require((_tokenIdTracker.current() + 1) < maxSupply, "autostaking: all autostaking have been minted");

    _mint(msg.sender, _tokenIdTracker.current());
    creator[_tokenIdTracker.current()] = msg.sender;
    lastDividendAt[_tokenIdTracker.current()] = totalDividend;
    _setTokenURI(_tokenIdTracker.current(), string(abi.encodePacked(Strings.toString(_tokenIdTracker.current()), ".json")));
    _tokenIdTracker.increment();
    splitBalance(1);
  }

  function mintMany(uint256 quantity) external payable override {
    require(canMint, "autostaking: minting currently disabled");
    require (quantity < 11, "autostaking: minting more than 10 is prohibited");
    require(msg.value >= (quantity * _tokenPrice), "autostaking: must send correct price");
    require((_tokenIdTracker.current() + quantity) < maxSupply, "autostaking: all autostaking have been minted");
    for(uint i = 0; i < quantity; i++){
      _mint(msg.sender, _tokenIdTracker.current());
      creator[_tokenIdTracker.current()] = msg.sender;
      lastDividendAt[_tokenIdTracker.current()] = totalDividend;
      _setTokenURI(_tokenIdTracker.current(), string(abi.encodePacked(Strings.toString(_tokenIdTracker.current()), ".json")));
      _tokenIdTracker.increment();
    }
    splitBalance(quantity);
  }
  
  function mintMultiples(address[] calldata recipients)public {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to initial mint");
        for (uint256 i = 0; i < recipients.length; i++){
      _mint(recipients[i], _tokenIdTracker.current());
      creator[_tokenIdTracker.current()] = recipients[i];
      lastDividendAt[_tokenIdTracker.current()] = totalDividend;
      _setTokenURI(_tokenIdTracker.current(), string(abi.encodePacked(Strings.toString(_tokenIdTracker.current()), ".json")));
      _tokenIdTracker.increment();
    }
  }

  function NftCreator(uint256 tokenId) public view returns(address){
    return creator[tokenId];
  }

  function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
    return ERC721URIStorage._burn(tokenId);
  }

  function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
    return ERC721URIStorage.tokenURI(tokenId);
  }
  
  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable) {
    if (totalSupply() > tokenId) claimReward(tokenId);
    super._beforeTokenTransfer(from, to, tokenId);
  }

  /**
    * @dev See {IERC165-supportsInterface}.
    */
  function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721, ERC721Enumerable) returns (bool) {
    return super.supportsInterface(interfaceId);
  }

  function currentRate() public view returns (uint256){
      if(totalSupply() == 0) return 0;
      return reflectionBalance/totalSupply();
  }

  function claimRewards() public override{
    uint count = balanceOf(msg.sender);
    uint256 total = 0;
    for(uint i=0; i < count; i++){
        uint tokenId = tokenOfOwnerByIndex(msg.sender, i);
        //claimReward(tokenId);
        total += getReflectionBalance(tokenId);
        lastDividendAt[tokenId] = totalDividend;
    }
    if(total > 0){
        payable(msg.sender).transfer(total);
        reflectionBalance -= total;
    }
  }

  function claimRewardsInToken() external override{
    uint count = balanceOf(msg.sender);
    uint256 total = 0;
    for(uint i=0; i < count; i++){
        uint tokenId = tokenOfOwnerByIndex(msg.sender, i);
        total += getReflectionBalance(tokenId);
        lastDividendAt[tokenId] = totalDividend;
    }
    if(total > 0){
        address[] memory path = new address[](2);
        for(uint i = 0; i < tokensToBuy.length; i++){
            uint ToSend = total/tokensToBuy.length;
            path[0] = router.WETH();
            path[1] = address(tokensToBuy[i].buyableToken);
            router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ToSend}(
              0,
              path,
              msg.sender,
              block.timestamp + 20
            );
          }
        reflectionBalance -= total;
    }
  }

  function claimReward(uint tokenId) internal {
    uint256 total = getReflectionBalance(tokenId);
    if(total > 0){
      reflectionBalance -= total;
      if(!excludedFromRewards[ownerOf(tokenId)]){
          address[] memory path = new address[](2);
            for(uint i = 0; i < tokensToBuy.length; i++){
            uint ToSend = total/tokensToBuy.length;
            path[0] = router.WETH();
            path[1] = address(tokensToBuy[i].buyableToken);
            router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ToSend}(
              0,
              path,
              ownerOf(tokenId),
              block.timestamp + 20
            );
          }
      }else{
        reflectDividend(total);
      }
      lastDividendAt[tokenId] = totalDividend;
    }
  }

  function getReflectionBalances() public view override returns(uint256) {
    uint count = balanceOf(msg.sender);
    uint256 total = 0;
    for(uint i=0; i < count; i++){
        uint tokenId = tokenOfOwnerByIndex(msg.sender, i);
        total += getReflectionBalance(tokenId);
    }
    return total;
  }

  function claimTokens () external override {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to claim the balance");
    // make sure we capture all BNB that may or may not be sent to this contract
    payable(_admin).transfer(address(this).balance - reflectionBalance);
  }

  function setArtistFeeReciever (address receiver) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to set artist wallet");
    // make sure we capture all BNB that may or may not be sent to this contract
    artistFeeReciever = receiver;
  }

  function setMarketingFeeReciever (address receiver) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to set artist wallet");
    // make sure we capture all BNB that may or may not be sent to this contract
    
    marketingReciever = receiver;
  }

  function recoverStuckToken (IBEP20 token) external override{
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to claim the balance");
    // make sure we capture all BNB that may or may not be sent to this contract
    token.transfer(msg.sender, token.balanceOf(address(this)));
  }

  function getReflectionBalance(uint256 tokenId) public view returns (uint256){
      return totalDividend - lastDividendAt[tokenId];
  }

  function deposit()public payable override {
    reflectDividend(msg.value);
  }

  function addTokenToBuy(address TokenToAdd, uint percent) external override {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: only the admin can add a token");
    buyableTokens memory token;
    token.buyableToken = TokenToAdd;
    token.percentage = percent;
    tokensToBuy.push(token);
  }

  function removeTokenToBuy(address TokenToRemove) external returns(bool success){
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to remove payable token");
        for(uint i = 0; i < tokensToBuy.length; i++){
            if(address(tokensToBuy[i].buyableToken) == address(TokenToRemove)){
            tokensToBuy[i] = tokensToBuy[tokensToBuy.length - 1];
            tokensToBuy.pop();
            return true;
            }
        }
        return false;
  }

  function addWalletToBuy(address wallet, uint percent) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: only the admin can add a token");
    wallets memory walletToBuy;
    walletToBuy.walletAddress = wallet;
    walletToBuy.percentage = percent;
    walletsToSend.push(walletToBuy);
  }

  function removeWalletToBuy(address ToRemove) external returns(bool success){
      require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to remove payable token");
      for(uint i = 0; i < walletsToSend.length; i++){
          if(address(walletsToSend[i].walletAddress) == address(ToRemove)){
          walletsToSend[i] = walletsToSend[walletsToSend.length - 1];
          walletsToSend.pop();
          return true;
          }
      }
      return false;
  }

  function setReflectPercent(uint256 percentage) external{
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to set reflect percent");
    reflectPercent = percentage;
  }

  function splitBalance(uint256 amount) private {
      uint tokenAmount = amount * _tokenPrice; // get the total token price to sell for reflection purchases
      uint totaltoDistribute = tokenAmount;
      uint256 artistEarnings = totaltoDistribute * artistPercent /100;
      payable(artistFeeReciever).transfer(artistEarnings);
      uint256 devValue = totaltoDistribute * devpercent /100;
      payable(devFeeReciever).transfer(devValue);
      reflectDividend(totaltoDistribute * reflectPercent /100);
      for(uint i = 0; i < walletsToSend.length; i++){
        uint ToSend = totaltoDistribute * walletsToSend[i].percentage /100;
        payable(walletsToSend[i].walletAddress).transfer(ToSend);
      }
  }

  function reflectDividend(uint256 amount) private {
    reflectionBalance  = reflectionBalance + amount;
    totalDividend = totalDividend + (amount/totalSupply());
    totalCollected += amount;
    totalReflectionVolume += amount;
  } 
}

File 1 of 20: AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
import "./ERC165.sol";


/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 2 of 20: AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./AccessControl.sol";
import "./EnumerableSet.sol";


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlEnumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

File 3 of 20: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 4 of 20: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 5 of 20: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

File 6 of 20: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 7 of 20: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 8 of 20: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 9 of 20: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 10 of 20: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 11 of 20: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 12 of 20: ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";

/**
 * @dev ERC721 token with storage based token uri management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 13 of 20: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 14 of 20: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

File 15 of 20: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 16 of 20: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 17 of 20: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

File 18 of 20: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 20 of 20: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"address","name":"admin","type":"address"},{"internalType":"uint256","name":"max","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NftCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"SetcontractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_contractMeta","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_distributorFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeReciever","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenIdTracker","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"TokenToAdd","type":"address"},{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"addTokenToBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"addWalletToBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistFeeReciever","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artistPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewardsInToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"devFeeReciever","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"Adds","type":"address[]"}],"name":"excludeFromrewardMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinted","outputs":[{"internalType":"uint256","name":"minted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getReflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReflectionBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getServiceFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStoragePrice","outputs":[{"internalType":"uint256","name":"storagePrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAutostaking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingReciever","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"mintMultiples","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IBEP20","name":"token","type":"address"}],"name":"recoverStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reflectPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"TokenToRemove","type":"address"}],"name":"removeTokenToBuy","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ToRemove","type":"address"}],"name":"removeWalletToBuy","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IDEXRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setAdditionalAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"setArtistFeeReciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"reciever","type":"address"}],"name":"setFeeReciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"setMarketingFeeReciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"Allowed","type":"bool"}],"name":"setMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setReflectPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokensToBuy","outputs":[{"internalType":"address","name":"buyableToken","type":"address"},{"internalType":"uint256","name":"percentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCollected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReflectionVolume","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalrewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"walletsToSend","outputs":[{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"uint256","name":"percentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526703782dace9d90000601055662386f26fc100006011556103e8601255600a6015556016805460ff60a01b191690556003601a556002601b556019601c55601d805460ff19166001179055601e80546001600160a01b031990811661dead17909155601f805482167308f5bcd7421fc071e7a916ed77003b1cf78f6faa17905560208054909116733a0cb1d6b195ea497b060cc99a292e37e5d2752917905560646029556000602a55348015620000ba57600080fd5b5060405162004e9338038062004e93833981016040819052620000dd9162000528565b845185908590620000f690600290602085019062000390565b5080516200010c90600390602084019062000390565b50505060108390556012819055601380546001600160a01b0384166001600160a01b03199182161790915560168054909116737a250d5630b4cf539739df2c5dacb4c659f2488d179055620001636000836200022b565b620001706000336200022b565b601660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001bf57600080fd5b505afa158015620001d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fa91906200050a565b601d60016101000a8154816001600160a01b0302191690836001600160a01b0316021790555050505050506200060b565b6200024282826200026e60201b620028361760201c565b600082815260016020908152604090912062000269918390620028406200027e821b17901c565b505050565b6200027a82826200029e565b5050565b600062000295836001600160a01b0384166200033e565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200027a576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002fa3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620003875750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000298565b50600062000298565b8280546200039e90620005b8565b90600052602060002090601f016020900481019282620003c257600085556200040d565b82601f10620003dd57805160ff19168380011785556200040d565b828001600101855582156200040d579182015b828111156200040d578251825591602001919060010190620003f0565b506200041b9291506200041f565b5090565b5b808211156200041b576000815560010162000420565b80516001600160a01b03811681146200044e57600080fd5b919050565b600082601f8301126200046557600080fd5b81516001600160401b0380821115620004825762000482620005f5565b604051601f8301601f19908116603f01168101908282118183101715620004ad57620004ad620005f5565b81604052838152602092508683858801011115620004ca57600080fd5b600091505b83821015620004ee5785820183015181830184015290820190620004cf565b83821115620005005760008385830101525b9695505050505050565b6000602082840312156200051d57600080fd5b620002958262000436565b600080600080600060a086880312156200054157600080fd5b85516001600160401b03808211156200055957600080fd5b6200056789838a0162000453565b965060208801519150808211156200057e57600080fd5b506200058d8882890162000453565b94505060408601519250620005a56060870162000436565b9150608086015190509295509295909350565b600181811c90821680620005cd57607f821691505b60208210811415620005ef57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b614878806200061b6000396000f3fe60806040526004361061046b5760003560e01c80636f75be9a1161024a578063b753081911610139578063d6032f85116100b6578063edee9e451161007a578063edee9e4514610d93578063f747fb8814610db3578063f82f235f14610dd3578063f887ea4014610e03578063f9f8bdb714610e2357600080fd5b8063d6032f8514610ce9578063de0ed93414610cff578063e29eb83614610d1f578063e8a3d48514610d35578063e985e9c514610d4a57600080fd5b8063ca15c873116100fd578063ca15c87314610c6b578063d0e30db014610c8b578063d436d0ef14610c93578063d547741f14610cb3578063d5abeb0114610cd357600080fd5b8063b753081914610bb4578063b88d4fde14610bea578063beb9716d14610c0a578063c15b584214610c2b578063c87b56dd14610c4b57600080fd5b806398bcede9116101c7578063a9c6c9e11161018b578063a9c6c9e114610b33578063ac5c845b14610b49578063ac72200d14610b5f578063af4a2cdc14610b74578063b0d9ea1e14610b9457600080fd5b806398bcede914610ab2578063a15839a514610ac9578063a217fddf14610ae9578063a22cb46514610afe578063a7f93ebd14610b1e57600080fd5b80639010d07c1161020e5780639010d07c14610a23578063901f535814610a4357806391d1485414610a5d578063926f353b14610a7d57806395d89b4114610a9d57600080fd5b80636f75be9a1461096457806370a08231146109a357806372e4001c146109c357806388306394146109e357806389c343b614610a0357600080fd5b80632f9bc981116103665780634ea3871a116102e3578063584b6d37116102a7578063584b6d37146108ce57806360876ba7146108ee5780636352211e14610904578063653088cf146109245780636adff8801461094457600080fd5b80634ea3871a146108185780634f6ccce714610838578063510b515814610858578063534e996e1461088e57806355f804b3146108ae57600080fd5b806343e61a411161032a57806343e61a41146107ad578063472cad99146107c257806348c54b9d146107d85780634b6acafb146107ed5780634c0f38c21461080357600080fd5b80632f9bc9811461072257806336568abe14610742578063372500ab146107625780634131ff991461077757806342842e0e1461078d57600080fd5b8063162094c4116103f4578063241bbe99116103b8578063241bbe991461069d578063248a9ca3146106b2578063262d75df146105f55780632f2ff15d146106e25780632f745c591461070257600080fd5b8063162094c41461061257806318160ddd146106325780631e1a1e76146106475780631eec1ccb1461066757806323b872dd1461067d57600080fd5b806306fdde031161043b57806306fdde031461057b578063081812fc1461059d578063095ea7b3146105d557806311a1933c146105f55780631249c58b1461060a57600080fd5b8062fe50c6146104f057806301eb99ec1461052357806301ffc9a714610538578063059513a61461056857600080fd5b366104eb57601254600d54106104e9576021546001600160a01b03166108fc60646104973460146146af565b6104a1919061469b565b6040518115909202916000818181858888f193505050501580156104c9573d6000803e3d6000fd5b506104e960646104da3460506146af565b6104e4919061469b565b610e38565b005b600080fd5b3480156104fc57600080fd5b5061051061050b36600461411d565b610e9c565b6040519081526020015b60405180910390f35b34801561052f57600080fd5b50610510610ebe565b34801561054457600080fd5b5061055861055336600461417d565b610f16565b604051901515815260200161051a565b6104e961057636600461411d565b610f21565b34801561058757600080fd5b50610590611107565b60405161051a91906143d7565b3480156105a957600080fd5b506105bd6105b836600461411d565b611199565b6040516001600160a01b03909116815260200161051a565b3480156105e157600080fd5b506104e96105f0366004614042565b611221565b34801561060157600080fd5b50601154610510565b6104e9611337565b34801561061e57600080fd5b506104e961062d366004614265565b611444565b34801561063e57600080fd5b50600a54610510565b34801561065357600080fd5b506104e961066236600461406e565b6114b5565b34801561067357600080fd5b50610510601c5481565b34801561068957600080fd5b506104e9610698366004613f53565b611604565b3480156106a957600080fd5b506104e9611635565b3480156106be57600080fd5b506105106106cd36600461411d565b60009081526020819052604090206001015490565b3480156106ee57600080fd5b506104e96106fd366004614136565b61188f565b34801561070e57600080fd5b5061051061071d366004614042565b6118b1565b34801561072e57600080fd5b506020546105bd906001600160a01b031681565b34801561074e57600080fd5b506104e961075d366004614136565b611947565b34801561076e57600080fd5b506104e9611969565b34801561078357600080fd5b5061051060245481565b34801561079957600080fd5b506104e96107a8366004613f53565b611a1d565b3480156107b957600080fd5b50610590611a38565b3480156107ce57600080fd5b50610510601a5481565b3480156107e457600080fd5b506104e9611ac6565b3480156107f957600080fd5b5061051060255481565b34801561080f57600080fd5b50601254610510565b34801561082457600080fd5b506104e96108333660046140e3565b611b35565b34801561084457600080fd5b5061051061085336600461411d565b611bbe565b34801561086457600080fd5b506105bd61087336600461411d565b6027602052600090815260409020546001600160a01b031681565b34801561089a57600080fd5b506014546105bd906001600160a01b031681565b3480156108ba57600080fd5b506104e96108c9366004614217565b611c51565b3480156108da57600080fd5b506104e96108e9366004614042565b611cc6565b3480156108fa57600080fd5b5061051060175481565b34801561091057600080fd5b506105bd61091f36600461411d565b611d82565b34801561093057600080fd5b506104e961093f3660046141b7565b611df9565b34801561095057600080fd5b5061055861095f366004613ee0565b611e78565b34801561097057600080fd5b5061098461097f36600461411d565b611fc4565b604080516001600160a01b03909316835260208301919091520161051a565b3480156109af57600080fd5b506105106109be366004613ee0565b611ffc565b3480156109cf57600080fd5b50601f546105bd906001600160a01b031681565b3480156109ef57600080fd5b506109846109fe36600461411d565b612083565b348015610a0f57600080fd5b506104e9610a1e36600461406e565b612093565b348015610a2f57600080fd5b506105bd610a3e36600461415b565b612182565b348015610a4f57600080fd5b50601d546105589060ff1681565b348015610a6957600080fd5b50610558610a78366004614136565b6121a1565b348015610a8957600080fd5b506104e9610a98366004613ee0565b6121ca565b348015610aa957600080fd5b50610590612232565b348015610abe57600080fd5b50600d546105109081565b348015610ad557600080fd5b506104e9610ae4366004613ee0565b612241565b348015610af557600080fd5b50610510600081565b348015610b0a57600080fd5b506104e9610b19366004614014565b61228a565b348015610b2a57600080fd5b50601054610510565b348015610b3f57600080fd5b50610510602a5481565b348015610b5557600080fd5b5061051060185481565b348015610b6b57600080fd5b5061051061234f565b348015610b8057600080fd5b506104e9610b8f366004614042565b61235f565b348015610ba057600080fd5b506021546105bd906001600160a01b031681565b348015610bc057600080fd5b506105bd610bcf36600461411d565b6000908152602760205260409020546001600160a01b031690565b348015610bf657600080fd5b506104e9610c05366004613f94565b61241b565b348015610c1657600080fd5b5060165461055890600160a01b900460ff1681565b348015610c3757600080fd5b506104e9610c4636600461411d565b612453565b348015610c5757600080fd5b50610590610c6636600461411d565b6124c3565b348015610c7757600080fd5b50610510610c8636600461411d565b6124ce565b6104e96124e5565b348015610c9f57600080fd5b506104e9610cae366004613ee0565b6124ee565b348015610cbf57600080fd5b506104e9610cce366004614136565b61257b565b348015610cdf57600080fd5b5061051060125481565b348015610cf557600080fd5b5061051060155481565b348015610d0b57600080fd5b506104e9610d1a366004613ee0565b612585565b348015610d2b57600080fd5b5061051060195481565b348015610d4157600080fd5b506105906125ce565b348015610d5657600080fd5b50610558610d65366004613f1a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610d9f57600080fd5b50610558610dae366004613ee0565b6125dd565b348015610dbf57600080fd5b506104e9610dce366004613ee0565b6126eb565b348015610ddf57600080fd5b50610558610dee366004613ee0565b60286020526000908152604090205460ff1681565b348015610e0f57600080fd5b506016546105bd906001600160a01b031681565b348015610e2f57600080fd5b50610510612811565b80602454610e469190614683565b602455600a54610e56908261469b565b602554610e639190614683565b6025819055508060196000828254610e7b9190614683565b925050819055508060186000828254610e949190614683565b909155505050565b600081815260266020526040812054602554610eb891906146ce565b92915050565b600080610eca33611ffc565b90506000805b82811015610f0f576000610ee433836118b1565b9050610eef81610e9c565b610ef99084614683565b9250508080610f079061474c565b915050610ed0565b5092915050565b6000610eb882612855565b601654600160a01b900460ff16610f535760405162461bcd60e51b8152600401610f4a9061443c565b60405180910390fd5b600b8110610fbb5760405162461bcd60e51b815260206004820152602f60248201527f6175746f7374616b696e673a206d696e74696e67206d6f7265207468616e203160448201526e0c081a5cc81c1c9bda1a589a5d1959608a1b6064820152608401610f4a565b601054610fc890826146af565b341015610fe75760405162461bcd60e51b8152600401610f4a90614483565b60125481610ff4600d5490565b610ffe9190614683565b1061101b5760405162461bcd60e51b8152600401610f4a906145a1565b60005b818110156110fa5761103833611033600d5490565b61287a565b3360276000611046600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060255460266000611088600d5490565b81526020810191909152604001600020556110da6110a5600d5490565b6110b66110b1600d5490565b6129b9565b6040516020016110c69190614307565b604051602081830303815290604052612abf565b6110e8600d80546001019055565b806110f28161474c565b91505061101e565b5061110481612b4a565b50565b60606002805461111690614711565b80601f016020809104026020016040519081016040528092919081815260200182805461114290614711565b801561118f5780601f106111645761010080835404028352916020019161118f565b820191906000526020600020905b81548152906001019060200180831161117257829003601f168201915b5050505050905090565b60006111a482612ce6565b6112055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610f4a565b506000908152600660205260409020546001600160a01b031690565b600061122c82611d82565b9050806001600160a01b0316836001600160a01b0316141561129a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f4a565b336001600160a01b03821614806112b657506112b68133610d65565b6113285760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610f4a565b6113328383612d03565b505050565b601654600160a01b900460ff166113605760405162461bcd60e51b8152600401610f4a9061443c565b6010543410156113825760405162461bcd60e51b8152600401610f4a90614483565b601254600d54611393906001614683565b106113b05760405162461bcd60e51b8152600401610f4a906145a1565b6113bd33611033600d5490565b33602760006113cb600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055506025546026600061140d600d5490565b815260208101919091526040016000205561142a6110a5600d5490565b611438600d80546001019055565b6114426001612b4a565b565b61144f6000336121a1565b6114a75760405162461bcd60e51b815260206004820152603560248201526000805160206148238339815191526044820152746520746f206368616e676520746f6b656e2055524960581b6064820152608401610f4a565b6114b18282612abf565b5050565b6114c06000336121a1565b6115145760405162461bcd60e51b8152602060048201526031602482015260008051602061482383398151915260448201527019481d1bc81a5b9a5d1a585b081b5a5b9d607a1b6064820152608401610f4a565b60005b8181101561133257611551838383818110611534576115346147bd565b90506020020160208101906115499190613ee0565b600d5461287a565b828282818110611563576115636147bd565b90506020020160208101906115789190613ee0565b60276000611585600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550602554602660006115c7600d5490565b81526020810191909152604001600020556115e46110a5600d5490565b6115f2600d80546001019055565b806115fc8161474c565b915050611517565b61160e3382612d71565b61162a5760405162461bcd60e51b8152600401610f4a906145ee565b611332838383612e57565b600061164033611ffc565b90506000805b8281101561169957600061165a33836118b1565b905061166581610e9c565b61166f9084614683565b602554600092835260266020526040909220919091559150806116918161474c565b915050611646565b5080156114b15760408051600280825260608201835260009260208301908036833701905050905060005b602254811015611872576022546000906116de908561469b565b9050601660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561172e57600080fd5b505afa158015611742573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117669190613efd565b83600081518110611779576117796147bd565b60200260200101906001600160a01b031690816001600160a01b031681525050602282815481106117ac576117ac6147bd565b600091825260209091206002909102015483516001600160a01b0390911690849060019081106117de576117de6147bd565b6001600160a01b0392831660209182029290920101526016541663b6f9de95826000863361180d426014614683565b6040518663ffffffff1660e01b815260040161182c949392919061436d565b6000604051808303818588803b15801561184557600080fd5b505af1158015611859573d6000803e3d6000fd5b505050505050808061186a9061474c565b9150506116c4565b50816024600082825461188591906146ce565b9091555050505050565b6118998282613002565b60008281526001602052604090206113329082612840565b60006118bc83611ffc565b821061191e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610f4a565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6119518282613083565b600082815260016020526040902061133290826130fd565b600061197433611ffc565b90506000805b828110156119cd57600061198e33836118b1565b905061199981610e9c565b6119a39084614683565b602554600092835260266020526040909220919091559150806119c58161474c565b91505061197a565b5080156114b157604051339082156108fc029083906000818181858888f19350505050158015611a01573d6000803e3d6000fd5b508060246000828254611a1491906146ce565b90915550505050565b6113328383836040518060200160405280600081525061241b565b600f8054611a4590614711565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7190614711565b8015611abe5780601f10611a9357610100808354040283529160200191611abe565b820191906000526020600020905b815481529060010190602001808311611aa157829003601f168201915b505050505081565b611ad16000336121a1565b611aed5760405162461bcd60e51b8152600401610f4a906144c7565b6013546024546001600160a01b03909116906108fc90611b0d90476146ce565b6040518115909202916000818181858888f19350505050158015611104573d6000803e3d6000fd5b611b406000336121a1565b611ba05760405162461bcd60e51b815260206004820152603b602482015260008051602061482383398151915260448201527f6520746f206368616e6765206d696e74696e67206162696c69747900000000006064820152608401610f4a565b60168054911515600160a01b0260ff60a01b19909216919091179055565b6000611bc9600a5490565b8210611c2c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610f4a565b600a8281548110611c3f57611c3f6147bd565b90600052602060002001549050919050565b611c5c6000336121a1565b611cb35760405162461bcd60e51b815260206004820152603460248201526000805160206148238339815191526044820152736520746f206368616e676520626173652055524960601b6064820152608401610f4a565b80516114b190600e906020840190613d3d565b611cd16000336121a1565b611ced5760405162461bcd60e51b8152600401610f4a90614556565b604080518082019091526001600160a01b039283168152602081019182526022805460018101825560009190915290517f61035b26e3e9eee00e0d72fd1ee8ddca6894550dca6916ea2ac6baa90d11e510600290920291820180546001600160a01b0319169190941617909255517f61035b26e3e9eee00e0d72fd1ee8ddca6894550dca6916ea2ac6baa90d11e51190910155565b6000818152600460205260408120546001600160a01b031680610eb85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610f4a565b611e046000336121a1565b611e6c5760405162461bcd60e51b815260206004820152603360248201527f6175746f7374616b696e673a206f6e6c7920746865206469737472696275746f604482015272722063616e206164642074686973206d65746160681b6064820152608401610f4a565b611332600f8383613dc1565b6000611e8481336121a1565b611ea05760405162461bcd60e51b8152600401610f4a9061450b565b60005b602254811015611fbb57826001600160a01b031660228281548110611eca57611eca6147bd565b60009182526020909120600290910201546001600160a01b03161415611fa95760228054611efa906001906146ce565b81548110611f0a57611f0a6147bd565b906000526020600020906002020160228281548110611f2b57611f2b6147bd565b60009182526020909120825460029092020180546001600160a01b0319166001600160a01b039092169190911781556001918201549101556022805480611f7457611f746147a7565b60008281526020812060026000199093019283020180546001600160a01b031916815560019081019190915591559392505050565b80611fb38161474c565b915050611ea3565b50600092915050565b60228181548110611fd457600080fd5b6000918252602090912060029091020180546001909101546001600160a01b03909116915082565b60006001600160a01b0382166120675760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610f4a565b506001600160a01b031660009081526005602052604090205490565b60238181548110611fd457600080fd5b61209e6000336121a1565b6121105760405162461bcd60e51b815260206004820152603960248201527f6175746f7374616b696e673a206d75737420686176652064697374726962757460448201527f6f7220726f6c6520746f20616464206578636c7573696f6e73000000000000006064820152608401610f4a565b60005b8181101561133257600160286000858585818110612133576121336147bd565b90506020020160208101906121489190613ee0565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061217a8161474c565b915050612113565b600082815260016020526040812061219a9083613112565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6121d56000336121a1565b6122275760405162461bcd60e51b815260206004820152602f602482015260008051602061482383398151915260448201526e6520746f206164642061646d696e7360881b6064820152608401610f4a565b61110460008261311e565b60606003805461111690614711565b61224c6000336121a1565b6122685760405162461bcd60e51b8152600401610f4a9061463f565b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382163314156122e35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f4a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061235a600d5490565b905090565b61236a6000336121a1565b6123865760405162461bcd60e51b8152600401610f4a90614556565b604080518082019091526001600160a01b039283168152602081019182526023805460018101825560009190915290517fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f4230600290920291820180546001600160a01b0319169190941617909255517fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f423190910155565b6124253383612d71565b6124415760405162461bcd60e51b8152600401610f4a906145ee565b61244d84848484613128565b50505050565b61245e6000336121a1565b6124be5760405162461bcd60e51b8152602060048201526038602482015260008051602061482383398151915260448201527f6520746f20736574207265666c6563742070657263656e7400000000000000006064820152608401610f4a565b601c55565b6060610eb88261315b565b6000818152600160205260408120610eb8906132bd565b61144234610e38565b6124f96000336121a1565b6125595760405162461bcd60e51b8152602060048201526038602482015260008051602061482383398151915260448201527f6520746f206368616e67652066656520726563696576657200000000000000006064820152608401610f4a565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b61195182826132c7565b6125906000336121a1565b6125ac5760405162461bcd60e51b8152600401610f4a9061463f565b602180546001600160a01b0319166001600160a01b0392909216919091179055565b6060600f805461111690614711565b60006125e981336121a1565b6126055760405162461bcd60e51b8152600401610f4a9061450b565b60005b602354811015611fbb57826001600160a01b03166023828154811061262f5761262f6147bd565b60009182526020909120600290910201546001600160a01b031614156126d9576023805461265f906001906146ce565b8154811061266f5761266f6147bd565b906000526020600020906002020160238281548110612690576126906147bd565b60009182526020909120825460029092020180546001600160a01b0319166001600160a01b039092169190911781556001918201549101556023805480611f7457611f746147a7565b806126e38161474c565b915050612608565b6126f66000336121a1565b6127125760405162461bcd60e51b8152600401610f4a906144c7565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b15801561275b57600080fd5b505afa15801561276f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612793919061424c565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156127d957600080fd5b505af11580156127ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b19190614100565b600061281c600a5490565b6128265750600090565b600a5460245461235a919061469b565b6114b18282613347565b600061219a836001600160a01b0384166133cb565b60006001600160e01b0319821663780e9d6360e01b1480610eb85750610eb88261341a565b6001600160a01b0382166128d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f4a565b6128d981612ce6565b156129265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f4a565b6129326000838361345a565b6001600160a01b038216600090815260056020526040812080546001929061295b908490614683565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816129dd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a0757806129f18161474c565b9150612a009050600a8361469b565b91506129e1565b60008167ffffffffffffffff811115612a2257612a226147d3565b6040519080825280601f01601f191660200182016040528015612a4c576020820181803683370190505b5090505b8415612ab757612a616001836146ce565b9150612a6e600a86614767565b612a79906030614683565b60f81b818381518110612a8e57612a8e6147bd565b60200101906001600160f81b031916908160001a905350612ab0600a8661469b565b9450612a50565b949350505050565b612ac882612ce6565b612b2b5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610f4a565b6000828152600c60209081526040909120825161133292840190613d3d565b600060105482612b5a91906146af565b9050600081905060006064601a5483612b7391906146af565b612b7d919061469b565b601f546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612bb8573d6000803e3d6000fd5b5060006064601b5484612bcb91906146af565b612bd5919061469b565b6020546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612c10573d6000803e3d6000fd5b50612c246064601c54856104da91906146af565b60005b602354811015612cde576000606460238381548110612c4857612c486147bd565b90600052602060002090600202016001015486612c6591906146af565b612c6f919061469b565b905060238281548110612c8457612c846147bd565b600091825260208220600290910201546040516001600160a01b039091169183156108fc02918491818181858888f19350505050158015612cc9573d6000803e3d6000fd5b50508080612cd69061474c565b915050612c27565b505050505050565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612d3882611d82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d7c82612ce6565b612ddd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610f4a565b6000612de883611d82565b9050806001600160a01b0316846001600160a01b03161480612e235750836001600160a01b0316612e1884611199565b6001600160a01b0316145b80612ab757506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16612ab7565b826001600160a01b0316612e6a82611d82565b6001600160a01b031614612ed25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610f4a565b6001600160a01b038216612f345760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f4a565b612f3f83838361345a565b612f4a600082612d03565b6001600160a01b0383166000908152600560205260408120805460019290612f739084906146ce565b90915550506001600160a01b0382166000908152600560205260408120805460019290612fa1908490614683565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020819052604090206001015461301f905b336121a1565b6128365760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b6064820152608401610f4a565b6001600160a01b03811633146130f35760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610f4a565b6114b1828261347e565b600061219a836001600160a01b0384166134e3565b600061219a83836135d6565b6118998282612836565b613133848484612e57565b61313f8484848461365c565b61244d5760405162461bcd60e51b8152600401610f4a906143ea565b606061316682612ce6565b6131cc5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610f4a565b6000828152600c6020526040812080546131e590614711565b80601f016020809104026020016040519081016040528092919081815260200182805461321190614711565b801561325e5780601f106132335761010080835404028352916020019161325e565b820191906000526020600020905b81548152906001019060200180831161324157829003601f168201915b50505050509050600061326f613769565b9050805160001415613282575092915050565b8151156132b457808260405160200161329c9291906142d8565b60405160208183030381529060405292505050919050565b612ab784613778565b6000610eb8825490565b6000828152602081905260409020600101546132e290613019565b6130f35760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b6064820152608401610f4a565b61335182826121a1565b6114b1576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556133873390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461341257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610eb8565b506000610eb8565b60006001600160e01b031982166380ac58cd60e01b148061344b57506001600160e01b03198216635b5e139f60e01b145b80610eb85750610eb882613842565b80613464600a5490565b11156134735761347381613867565b611332838383613ac0565b61348882826121a1565b156114b1576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156135cc5760006135076001836146ce565b855490915060009061351b906001906146ce565b90506000866000018281548110613534576135346147bd565b9060005260206000200154905080876000018481548110613557576135576147bd565b60009182526020909120015561356e836001614683565b60008281526001890160205260409020558654879080613590576135906147a7565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610eb8565b6000915050610eb8565b815460009082106136345760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610f4a565b826000018281548110613649576136496147bd565b9060005260206000200154905092915050565b60006001600160a01b0384163b1561375e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906136a0903390899088908890600401614330565b602060405180830381600087803b1580156136ba57600080fd5b505af19250505080156136ea575060408051601f3d908101601f191682019092526136e79181019061419a565b60015b613744573d808015613718576040519150601f19603f3d011682016040523d82523d6000602084013e61371d565b606091505b50805161373c5760405162461bcd60e51b8152600401610f4a906143ea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ab7565b506001949350505050565b6060600e805461111690614711565b606061378382612ce6565b6137e75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f4a565b60006137f1613769565b90506000815111613811576040518060200160405280600081525061219a565b8061381b846129b9565b60405160200161382c9291906142d8565b6040516020818303038152906040529392505050565b60006001600160e01b03198216635a05180f60e01b1480610eb85750610eb882613b78565b600061387282610e9c565b905080156114b157806024600082825461388c91906146ce565b9091555060289050600061389f84611d82565b6001600160a01b0316815260208101919091526040016000205460ff16613aa15760408051600280825260608201835260009260208301908036833701905050905060005b602254811015613a9a576022546000906138fe908561469b565b9050601660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561394e57600080fd5b505afa158015613962573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139869190613efd565b83600081518110613999576139996147bd565b60200260200101906001600160a01b031690816001600160a01b031681525050602282815481106139cc576139cc6147bd565b600091825260209091206002909102015483516001600160a01b0390911690849060019081106139fe576139fe6147bd565b6001600160a01b0392831660209182029290920101526016541663b6f9de9582600086613a2a8a611d82565b613a35426014614683565b6040518663ffffffff1660e01b8152600401613a54949392919061436d565b6000604051808303818588803b158015613a6d57600080fd5b505af1158015613a81573d6000803e3d6000fd5b5050505050508080613a929061474c565b9150506138e4565b5050613aaa565b613aaa81610e38565b6025546000838152602660205260409020555050565b6001600160a01b038316613b1b57613b1681600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b613b3e565b816001600160a01b0316836001600160a01b031614613b3e57613b3e8382613bad565b6001600160a01b038216613b555761133281613c4a565b826001600160a01b0316826001600160a01b031614611332576113328282613cf9565b60006001600160e01b03198216637965db0b60e01b1480610eb857506301ffc9a760e01b6001600160e01b0319831614610eb8565b60006001613bba84611ffc565b613bc491906146ce565b600083815260096020526040902054909150808214613c17576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a54600090613c5c906001906146ce565b6000838152600b6020526040812054600a8054939450909284908110613c8457613c846147bd565b9060005260206000200154905080600a8381548110613ca557613ca56147bd565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480613cdd57613cdd6147a7565b6001900381819060005260206000200160009055905550505050565b6000613d0483611ffc565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b828054613d4990614711565b90600052602060002090601f016020900481019282613d6b5760008555613db1565b82601f10613d8457805160ff1916838001178555613db1565b82800160010185558215613db1579182015b82811115613db1578251825591602001919060010190613d96565b50613dbd929150613e35565b5090565b828054613dcd90614711565b90600052602060002090601f016020900481019282613def5760008555613db1565b82601f10613e085782800160ff19823516178555613db1565b82800160010185558215613db1579182015b82811115613db1578235825591602001919060010190613e1a565b5b80821115613dbd5760008155600101613e36565b600067ffffffffffffffff80841115613e6557613e656147d3565b604051601f8501601f19908116603f01168101908282118183101715613e8d57613e8d6147d3565b81604052809350858152868686011115613ea657600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613ed157600080fd5b61219a83833560208501613e4a565b600060208284031215613ef257600080fd5b813561219a816147e9565b600060208284031215613f0f57600080fd5b815161219a816147e9565b60008060408385031215613f2d57600080fd5b8235613f38816147e9565b91506020830135613f48816147e9565b809150509250929050565b600080600060608486031215613f6857600080fd5b8335613f73816147e9565b92506020840135613f83816147e9565b929592945050506040919091013590565b60008060008060808587031215613faa57600080fd5b8435613fb5816147e9565b93506020850135613fc5816147e9565b925060408501359150606085013567ffffffffffffffff811115613fe857600080fd5b8501601f81018713613ff957600080fd5b61400887823560208401613e4a565b91505092959194509250565b6000806040838503121561402757600080fd5b8235614032816147e9565b91506020830135613f48816147fe565b6000806040838503121561405557600080fd5b8235614060816147e9565b946020939093013593505050565b6000806020838503121561408157600080fd5b823567ffffffffffffffff8082111561409957600080fd5b818501915085601f8301126140ad57600080fd5b8135818111156140bc57600080fd5b8660208260051b85010111156140d157600080fd5b60209290920196919550909350505050565b6000602082840312156140f557600080fd5b813561219a816147fe565b60006020828403121561411257600080fd5b815161219a816147fe565b60006020828403121561412f57600080fd5b5035919050565b6000806040838503121561414957600080fd5b823591506020830135613f48816147e9565b6000806040838503121561416e57600080fd5b50508035926020909101359150565b60006020828403121561418f57600080fd5b813561219a8161480c565b6000602082840312156141ac57600080fd5b815161219a8161480c565b600080602083850312156141ca57600080fd5b823567ffffffffffffffff808211156141e257600080fd5b818501915085601f8301126141f657600080fd5b81358181111561420557600080fd5b8660208285010111156140d157600080fd5b60006020828403121561422957600080fd5b813567ffffffffffffffff81111561424057600080fd5b612ab784828501613ec0565b60006020828403121561425e57600080fd5b5051919050565b6000806040838503121561427857600080fd5b82359150602083013567ffffffffffffffff81111561429657600080fd5b6142a285828601613ec0565b9150509250929050565b600081518084526142c48160208601602086016146e5565b601f01601f19169290920160200192915050565b600083516142ea8184602088016146e5565b8351908301906142fe8183602088016146e5565b01949350505050565b600082516143198184602087016146e5565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614363908301846142ac565b9695505050505050565b600060808201868352602060808185015281875180845260a086019150828901935060005b818110156143b75784516001600160a01b031683529383019391830191600101614392565b50506001600160a01b039690961660408501525050506060015292915050565b60208152600061219a60208301846142ac565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f6175746f7374616b696e673a206d696e74696e672063757272656e746c7920646040820152661a5cd8589b195960ca1b606082015260800190565b60208082526024908201527f6175746f7374616b696e673a206d7573742073656e6420636f727265637420706040820152637269636560e01b606082015260800190565b60208082526036908201526000805160206148238339815191526040820152756520746f20636c61696d207468652062616c616e636560501b606082015260800190565b602080825260399082015260008051602061482383398151915260408201527f6520746f2072656d6f76652070617961626c6520746f6b656e00000000000000606082015260800190565b6020808252602b908201527f6175746f7374616b696e673a206f6e6c79207468652061646d696e2063616e2060408201526a30b2321030903a37b5b2b760a91b606082015260800190565b6020808252602d908201527f6175746f7374616b696e673a20616c6c206175746f7374616b696e672068617660408201526c19481899595b881b5a5b9d1959609a1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260369082015260008051602061482383398151915260408201527519481d1bc81cd95d08185c9d1a5cdd081dd85b1b195d60521b606082015260800190565b600082198211156146965761469661477b565b500190565b6000826146aa576146aa614791565b500490565b60008160001904831182151516156146c9576146c961477b565b500290565b6000828210156146e0576146e061477b565b500390565b60005b838110156147005781810151838201526020016146e8565b8381111561244d5750506000910152565b600181811c9082168061472557607f821691505b6020821081141561474657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156147605761476061477b565b5060010190565b60008261477657614776614791565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461110457600080fd5b801515811461110457600080fd5b6001600160e01b03198116811461110457600080fdfe6175746f7374616b696e673a206d75737420686176652061646d696e20726f6ca26469706673582212206c1ef8802cd7afe9f909e924711a6715e6b14122eacdf8aa18e74521b4de830e64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000003a0cb1d6b195ea497b060cc99a292e37e5d275290000000000000000000000000000000000000000000000000000000000002d31000000000000000000000000000000000000000000000000000000000000000f4254432d42756c6c646f67204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a426974446f672d4e465400000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061046b5760003560e01c80636f75be9a1161024a578063b753081911610139578063d6032f85116100b6578063edee9e451161007a578063edee9e4514610d93578063f747fb8814610db3578063f82f235f14610dd3578063f887ea4014610e03578063f9f8bdb714610e2357600080fd5b8063d6032f8514610ce9578063de0ed93414610cff578063e29eb83614610d1f578063e8a3d48514610d35578063e985e9c514610d4a57600080fd5b8063ca15c873116100fd578063ca15c87314610c6b578063d0e30db014610c8b578063d436d0ef14610c93578063d547741f14610cb3578063d5abeb0114610cd357600080fd5b8063b753081914610bb4578063b88d4fde14610bea578063beb9716d14610c0a578063c15b584214610c2b578063c87b56dd14610c4b57600080fd5b806398bcede9116101c7578063a9c6c9e11161018b578063a9c6c9e114610b33578063ac5c845b14610b49578063ac72200d14610b5f578063af4a2cdc14610b74578063b0d9ea1e14610b9457600080fd5b806398bcede914610ab2578063a15839a514610ac9578063a217fddf14610ae9578063a22cb46514610afe578063a7f93ebd14610b1e57600080fd5b80639010d07c1161020e5780639010d07c14610a23578063901f535814610a4357806391d1485414610a5d578063926f353b14610a7d57806395d89b4114610a9d57600080fd5b80636f75be9a1461096457806370a08231146109a357806372e4001c146109c357806388306394146109e357806389c343b614610a0357600080fd5b80632f9bc981116103665780634ea3871a116102e3578063584b6d37116102a7578063584b6d37146108ce57806360876ba7146108ee5780636352211e14610904578063653088cf146109245780636adff8801461094457600080fd5b80634ea3871a146108185780634f6ccce714610838578063510b515814610858578063534e996e1461088e57806355f804b3146108ae57600080fd5b806343e61a411161032a57806343e61a41146107ad578063472cad99146107c257806348c54b9d146107d85780634b6acafb146107ed5780634c0f38c21461080357600080fd5b80632f9bc9811461072257806336568abe14610742578063372500ab146107625780634131ff991461077757806342842e0e1461078d57600080fd5b8063162094c4116103f4578063241bbe99116103b8578063241bbe991461069d578063248a9ca3146106b2578063262d75df146105f55780632f2ff15d146106e25780632f745c591461070257600080fd5b8063162094c41461061257806318160ddd146106325780631e1a1e76146106475780631eec1ccb1461066757806323b872dd1461067d57600080fd5b806306fdde031161043b57806306fdde031461057b578063081812fc1461059d578063095ea7b3146105d557806311a1933c146105f55780631249c58b1461060a57600080fd5b8062fe50c6146104f057806301eb99ec1461052357806301ffc9a714610538578063059513a61461056857600080fd5b366104eb57601254600d54106104e9576021546001600160a01b03166108fc60646104973460146146af565b6104a1919061469b565b6040518115909202916000818181858888f193505050501580156104c9573d6000803e3d6000fd5b506104e960646104da3460506146af565b6104e4919061469b565b610e38565b005b600080fd5b3480156104fc57600080fd5b5061051061050b36600461411d565b610e9c565b6040519081526020015b60405180910390f35b34801561052f57600080fd5b50610510610ebe565b34801561054457600080fd5b5061055861055336600461417d565b610f16565b604051901515815260200161051a565b6104e961057636600461411d565b610f21565b34801561058757600080fd5b50610590611107565b60405161051a91906143d7565b3480156105a957600080fd5b506105bd6105b836600461411d565b611199565b6040516001600160a01b03909116815260200161051a565b3480156105e157600080fd5b506104e96105f0366004614042565b611221565b34801561060157600080fd5b50601154610510565b6104e9611337565b34801561061e57600080fd5b506104e961062d366004614265565b611444565b34801561063e57600080fd5b50600a54610510565b34801561065357600080fd5b506104e961066236600461406e565b6114b5565b34801561067357600080fd5b50610510601c5481565b34801561068957600080fd5b506104e9610698366004613f53565b611604565b3480156106a957600080fd5b506104e9611635565b3480156106be57600080fd5b506105106106cd36600461411d565b60009081526020819052604090206001015490565b3480156106ee57600080fd5b506104e96106fd366004614136565b61188f565b34801561070e57600080fd5b5061051061071d366004614042565b6118b1565b34801561072e57600080fd5b506020546105bd906001600160a01b031681565b34801561074e57600080fd5b506104e961075d366004614136565b611947565b34801561076e57600080fd5b506104e9611969565b34801561078357600080fd5b5061051060245481565b34801561079957600080fd5b506104e96107a8366004613f53565b611a1d565b3480156107b957600080fd5b50610590611a38565b3480156107ce57600080fd5b50610510601a5481565b3480156107e457600080fd5b506104e9611ac6565b3480156107f957600080fd5b5061051060255481565b34801561080f57600080fd5b50601254610510565b34801561082457600080fd5b506104e96108333660046140e3565b611b35565b34801561084457600080fd5b5061051061085336600461411d565b611bbe565b34801561086457600080fd5b506105bd61087336600461411d565b6027602052600090815260409020546001600160a01b031681565b34801561089a57600080fd5b506014546105bd906001600160a01b031681565b3480156108ba57600080fd5b506104e96108c9366004614217565b611c51565b3480156108da57600080fd5b506104e96108e9366004614042565b611cc6565b3480156108fa57600080fd5b5061051060175481565b34801561091057600080fd5b506105bd61091f36600461411d565b611d82565b34801561093057600080fd5b506104e961093f3660046141b7565b611df9565b34801561095057600080fd5b5061055861095f366004613ee0565b611e78565b34801561097057600080fd5b5061098461097f36600461411d565b611fc4565b604080516001600160a01b03909316835260208301919091520161051a565b3480156109af57600080fd5b506105106109be366004613ee0565b611ffc565b3480156109cf57600080fd5b50601f546105bd906001600160a01b031681565b3480156109ef57600080fd5b506109846109fe36600461411d565b612083565b348015610a0f57600080fd5b506104e9610a1e36600461406e565b612093565b348015610a2f57600080fd5b506105bd610a3e36600461415b565b612182565b348015610a4f57600080fd5b50601d546105589060ff1681565b348015610a6957600080fd5b50610558610a78366004614136565b6121a1565b348015610a8957600080fd5b506104e9610a98366004613ee0565b6121ca565b348015610aa957600080fd5b50610590612232565b348015610abe57600080fd5b50600d546105109081565b348015610ad557600080fd5b506104e9610ae4366004613ee0565b612241565b348015610af557600080fd5b50610510600081565b348015610b0a57600080fd5b506104e9610b19366004614014565b61228a565b348015610b2a57600080fd5b50601054610510565b348015610b3f57600080fd5b50610510602a5481565b348015610b5557600080fd5b5061051060185481565b348015610b6b57600080fd5b5061051061234f565b348015610b8057600080fd5b506104e9610b8f366004614042565b61235f565b348015610ba057600080fd5b506021546105bd906001600160a01b031681565b348015610bc057600080fd5b506105bd610bcf36600461411d565b6000908152602760205260409020546001600160a01b031690565b348015610bf657600080fd5b506104e9610c05366004613f94565b61241b565b348015610c1657600080fd5b5060165461055890600160a01b900460ff1681565b348015610c3757600080fd5b506104e9610c4636600461411d565b612453565b348015610c5757600080fd5b50610590610c6636600461411d565b6124c3565b348015610c7757600080fd5b50610510610c8636600461411d565b6124ce565b6104e96124e5565b348015610c9f57600080fd5b506104e9610cae366004613ee0565b6124ee565b348015610cbf57600080fd5b506104e9610cce366004614136565b61257b565b348015610cdf57600080fd5b5061051060125481565b348015610cf557600080fd5b5061051060155481565b348015610d0b57600080fd5b506104e9610d1a366004613ee0565b612585565b348015610d2b57600080fd5b5061051060195481565b348015610d4157600080fd5b506105906125ce565b348015610d5657600080fd5b50610558610d65366004613f1a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610d9f57600080fd5b50610558610dae366004613ee0565b6125dd565b348015610dbf57600080fd5b506104e9610dce366004613ee0565b6126eb565b348015610ddf57600080fd5b50610558610dee366004613ee0565b60286020526000908152604090205460ff1681565b348015610e0f57600080fd5b506016546105bd906001600160a01b031681565b348015610e2f57600080fd5b50610510612811565b80602454610e469190614683565b602455600a54610e56908261469b565b602554610e639190614683565b6025819055508060196000828254610e7b9190614683565b925050819055508060186000828254610e949190614683565b909155505050565b600081815260266020526040812054602554610eb891906146ce565b92915050565b600080610eca33611ffc565b90506000805b82811015610f0f576000610ee433836118b1565b9050610eef81610e9c565b610ef99084614683565b9250508080610f079061474c565b915050610ed0565b5092915050565b6000610eb882612855565b601654600160a01b900460ff16610f535760405162461bcd60e51b8152600401610f4a9061443c565b60405180910390fd5b600b8110610fbb5760405162461bcd60e51b815260206004820152602f60248201527f6175746f7374616b696e673a206d696e74696e67206d6f7265207468616e203160448201526e0c081a5cc81c1c9bda1a589a5d1959608a1b6064820152608401610f4a565b601054610fc890826146af565b341015610fe75760405162461bcd60e51b8152600401610f4a90614483565b60125481610ff4600d5490565b610ffe9190614683565b1061101b5760405162461bcd60e51b8152600401610f4a906145a1565b60005b818110156110fa5761103833611033600d5490565b61287a565b3360276000611046600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060255460266000611088600d5490565b81526020810191909152604001600020556110da6110a5600d5490565b6110b66110b1600d5490565b6129b9565b6040516020016110c69190614307565b604051602081830303815290604052612abf565b6110e8600d80546001019055565b806110f28161474c565b91505061101e565b5061110481612b4a565b50565b60606002805461111690614711565b80601f016020809104026020016040519081016040528092919081815260200182805461114290614711565b801561118f5780601f106111645761010080835404028352916020019161118f565b820191906000526020600020905b81548152906001019060200180831161117257829003601f168201915b5050505050905090565b60006111a482612ce6565b6112055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610f4a565b506000908152600660205260409020546001600160a01b031690565b600061122c82611d82565b9050806001600160a01b0316836001600160a01b0316141561129a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f4a565b336001600160a01b03821614806112b657506112b68133610d65565b6113285760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610f4a565b6113328383612d03565b505050565b601654600160a01b900460ff166113605760405162461bcd60e51b8152600401610f4a9061443c565b6010543410156113825760405162461bcd60e51b8152600401610f4a90614483565b601254600d54611393906001614683565b106113b05760405162461bcd60e51b8152600401610f4a906145a1565b6113bd33611033600d5490565b33602760006113cb600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055506025546026600061140d600d5490565b815260208101919091526040016000205561142a6110a5600d5490565b611438600d80546001019055565b6114426001612b4a565b565b61144f6000336121a1565b6114a75760405162461bcd60e51b815260206004820152603560248201526000805160206148238339815191526044820152746520746f206368616e676520746f6b656e2055524960581b6064820152608401610f4a565b6114b18282612abf565b5050565b6114c06000336121a1565b6115145760405162461bcd60e51b8152602060048201526031602482015260008051602061482383398151915260448201527019481d1bc81a5b9a5d1a585b081b5a5b9d607a1b6064820152608401610f4a565b60005b8181101561133257611551838383818110611534576115346147bd565b90506020020160208101906115499190613ee0565b600d5461287a565b828282818110611563576115636147bd565b90506020020160208101906115789190613ee0565b60276000611585600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550602554602660006115c7600d5490565b81526020810191909152604001600020556115e46110a5600d5490565b6115f2600d80546001019055565b806115fc8161474c565b915050611517565b61160e3382612d71565b61162a5760405162461bcd60e51b8152600401610f4a906145ee565b611332838383612e57565b600061164033611ffc565b90506000805b8281101561169957600061165a33836118b1565b905061166581610e9c565b61166f9084614683565b602554600092835260266020526040909220919091559150806116918161474c565b915050611646565b5080156114b15760408051600280825260608201835260009260208301908036833701905050905060005b602254811015611872576022546000906116de908561469b565b9050601660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561172e57600080fd5b505afa158015611742573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117669190613efd565b83600081518110611779576117796147bd565b60200260200101906001600160a01b031690816001600160a01b031681525050602282815481106117ac576117ac6147bd565b600091825260209091206002909102015483516001600160a01b0390911690849060019081106117de576117de6147bd565b6001600160a01b0392831660209182029290920101526016541663b6f9de95826000863361180d426014614683565b6040518663ffffffff1660e01b815260040161182c949392919061436d565b6000604051808303818588803b15801561184557600080fd5b505af1158015611859573d6000803e3d6000fd5b505050505050808061186a9061474c565b9150506116c4565b50816024600082825461188591906146ce565b9091555050505050565b6118998282613002565b60008281526001602052604090206113329082612840565b60006118bc83611ffc565b821061191e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610f4a565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6119518282613083565b600082815260016020526040902061133290826130fd565b600061197433611ffc565b90506000805b828110156119cd57600061198e33836118b1565b905061199981610e9c565b6119a39084614683565b602554600092835260266020526040909220919091559150806119c58161474c565b91505061197a565b5080156114b157604051339082156108fc029083906000818181858888f19350505050158015611a01573d6000803e3d6000fd5b508060246000828254611a1491906146ce565b90915550505050565b6113328383836040518060200160405280600081525061241b565b600f8054611a4590614711565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7190614711565b8015611abe5780601f10611a9357610100808354040283529160200191611abe565b820191906000526020600020905b815481529060010190602001808311611aa157829003601f168201915b505050505081565b611ad16000336121a1565b611aed5760405162461bcd60e51b8152600401610f4a906144c7565b6013546024546001600160a01b03909116906108fc90611b0d90476146ce565b6040518115909202916000818181858888f19350505050158015611104573d6000803e3d6000fd5b611b406000336121a1565b611ba05760405162461bcd60e51b815260206004820152603b602482015260008051602061482383398151915260448201527f6520746f206368616e6765206d696e74696e67206162696c69747900000000006064820152608401610f4a565b60168054911515600160a01b0260ff60a01b19909216919091179055565b6000611bc9600a5490565b8210611c2c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610f4a565b600a8281548110611c3f57611c3f6147bd565b90600052602060002001549050919050565b611c5c6000336121a1565b611cb35760405162461bcd60e51b815260206004820152603460248201526000805160206148238339815191526044820152736520746f206368616e676520626173652055524960601b6064820152608401610f4a565b80516114b190600e906020840190613d3d565b611cd16000336121a1565b611ced5760405162461bcd60e51b8152600401610f4a90614556565b604080518082019091526001600160a01b039283168152602081019182526022805460018101825560009190915290517f61035b26e3e9eee00e0d72fd1ee8ddca6894550dca6916ea2ac6baa90d11e510600290920291820180546001600160a01b0319169190941617909255517f61035b26e3e9eee00e0d72fd1ee8ddca6894550dca6916ea2ac6baa90d11e51190910155565b6000818152600460205260408120546001600160a01b031680610eb85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610f4a565b611e046000336121a1565b611e6c5760405162461bcd60e51b815260206004820152603360248201527f6175746f7374616b696e673a206f6e6c7920746865206469737472696275746f604482015272722063616e206164642074686973206d65746160681b6064820152608401610f4a565b611332600f8383613dc1565b6000611e8481336121a1565b611ea05760405162461bcd60e51b8152600401610f4a9061450b565b60005b602254811015611fbb57826001600160a01b031660228281548110611eca57611eca6147bd565b60009182526020909120600290910201546001600160a01b03161415611fa95760228054611efa906001906146ce565b81548110611f0a57611f0a6147bd565b906000526020600020906002020160228281548110611f2b57611f2b6147bd565b60009182526020909120825460029092020180546001600160a01b0319166001600160a01b039092169190911781556001918201549101556022805480611f7457611f746147a7565b60008281526020812060026000199093019283020180546001600160a01b031916815560019081019190915591559392505050565b80611fb38161474c565b915050611ea3565b50600092915050565b60228181548110611fd457600080fd5b6000918252602090912060029091020180546001909101546001600160a01b03909116915082565b60006001600160a01b0382166120675760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610f4a565b506001600160a01b031660009081526005602052604090205490565b60238181548110611fd457600080fd5b61209e6000336121a1565b6121105760405162461bcd60e51b815260206004820152603960248201527f6175746f7374616b696e673a206d75737420686176652064697374726962757460448201527f6f7220726f6c6520746f20616464206578636c7573696f6e73000000000000006064820152608401610f4a565b60005b8181101561133257600160286000858585818110612133576121336147bd565b90506020020160208101906121489190613ee0565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061217a8161474c565b915050612113565b600082815260016020526040812061219a9083613112565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6121d56000336121a1565b6122275760405162461bcd60e51b815260206004820152602f602482015260008051602061482383398151915260448201526e6520746f206164642061646d696e7360881b6064820152608401610f4a565b61110460008261311e565b60606003805461111690614711565b61224c6000336121a1565b6122685760405162461bcd60e51b8152600401610f4a9061463f565b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382163314156122e35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f4a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061235a600d5490565b905090565b61236a6000336121a1565b6123865760405162461bcd60e51b8152600401610f4a90614556565b604080518082019091526001600160a01b039283168152602081019182526023805460018101825560009190915290517fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f4230600290920291820180546001600160a01b0319169190941617909255517fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f423190910155565b6124253383612d71565b6124415760405162461bcd60e51b8152600401610f4a906145ee565b61244d84848484613128565b50505050565b61245e6000336121a1565b6124be5760405162461bcd60e51b8152602060048201526038602482015260008051602061482383398151915260448201527f6520746f20736574207265666c6563742070657263656e7400000000000000006064820152608401610f4a565b601c55565b6060610eb88261315b565b6000818152600160205260408120610eb8906132bd565b61144234610e38565b6124f96000336121a1565b6125595760405162461bcd60e51b8152602060048201526038602482015260008051602061482383398151915260448201527f6520746f206368616e67652066656520726563696576657200000000000000006064820152608401610f4a565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b61195182826132c7565b6125906000336121a1565b6125ac5760405162461bcd60e51b8152600401610f4a9061463f565b602180546001600160a01b0319166001600160a01b0392909216919091179055565b6060600f805461111690614711565b60006125e981336121a1565b6126055760405162461bcd60e51b8152600401610f4a9061450b565b60005b602354811015611fbb57826001600160a01b03166023828154811061262f5761262f6147bd565b60009182526020909120600290910201546001600160a01b031614156126d9576023805461265f906001906146ce565b8154811061266f5761266f6147bd565b906000526020600020906002020160238281548110612690576126906147bd565b60009182526020909120825460029092020180546001600160a01b0319166001600160a01b039092169190911781556001918201549101556023805480611f7457611f746147a7565b806126e38161474c565b915050612608565b6126f66000336121a1565b6127125760405162461bcd60e51b8152600401610f4a906144c7565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b15801561275b57600080fd5b505afa15801561276f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612793919061424c565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156127d957600080fd5b505af11580156127ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b19190614100565b600061281c600a5490565b6128265750600090565b600a5460245461235a919061469b565b6114b18282613347565b600061219a836001600160a01b0384166133cb565b60006001600160e01b0319821663780e9d6360e01b1480610eb85750610eb88261341a565b6001600160a01b0382166128d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f4a565b6128d981612ce6565b156129265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f4a565b6129326000838361345a565b6001600160a01b038216600090815260056020526040812080546001929061295b908490614683565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816129dd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a0757806129f18161474c565b9150612a009050600a8361469b565b91506129e1565b60008167ffffffffffffffff811115612a2257612a226147d3565b6040519080825280601f01601f191660200182016040528015612a4c576020820181803683370190505b5090505b8415612ab757612a616001836146ce565b9150612a6e600a86614767565b612a79906030614683565b60f81b818381518110612a8e57612a8e6147bd565b60200101906001600160f81b031916908160001a905350612ab0600a8661469b565b9450612a50565b949350505050565b612ac882612ce6565b612b2b5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610f4a565b6000828152600c60209081526040909120825161133292840190613d3d565b600060105482612b5a91906146af565b9050600081905060006064601a5483612b7391906146af565b612b7d919061469b565b601f546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612bb8573d6000803e3d6000fd5b5060006064601b5484612bcb91906146af565b612bd5919061469b565b6020546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612c10573d6000803e3d6000fd5b50612c246064601c54856104da91906146af565b60005b602354811015612cde576000606460238381548110612c4857612c486147bd565b90600052602060002090600202016001015486612c6591906146af565b612c6f919061469b565b905060238281548110612c8457612c846147bd565b600091825260208220600290910201546040516001600160a01b039091169183156108fc02918491818181858888f19350505050158015612cc9573d6000803e3d6000fd5b50508080612cd69061474c565b915050612c27565b505050505050565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612d3882611d82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d7c82612ce6565b612ddd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610f4a565b6000612de883611d82565b9050806001600160a01b0316846001600160a01b03161480612e235750836001600160a01b0316612e1884611199565b6001600160a01b0316145b80612ab757506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16612ab7565b826001600160a01b0316612e6a82611d82565b6001600160a01b031614612ed25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610f4a565b6001600160a01b038216612f345760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f4a565b612f3f83838361345a565b612f4a600082612d03565b6001600160a01b0383166000908152600560205260408120805460019290612f739084906146ce565b90915550506001600160a01b0382166000908152600560205260408120805460019290612fa1908490614683565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020819052604090206001015461301f905b336121a1565b6128365760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b6064820152608401610f4a565b6001600160a01b03811633146130f35760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610f4a565b6114b1828261347e565b600061219a836001600160a01b0384166134e3565b600061219a83836135d6565b6118998282612836565b613133848484612e57565b61313f8484848461365c565b61244d5760405162461bcd60e51b8152600401610f4a906143ea565b606061316682612ce6565b6131cc5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610f4a565b6000828152600c6020526040812080546131e590614711565b80601f016020809104026020016040519081016040528092919081815260200182805461321190614711565b801561325e5780601f106132335761010080835404028352916020019161325e565b820191906000526020600020905b81548152906001019060200180831161324157829003601f168201915b50505050509050600061326f613769565b9050805160001415613282575092915050565b8151156132b457808260405160200161329c9291906142d8565b60405160208183030381529060405292505050919050565b612ab784613778565b6000610eb8825490565b6000828152602081905260409020600101546132e290613019565b6130f35760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b6064820152608401610f4a565b61335182826121a1565b6114b1576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556133873390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461341257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610eb8565b506000610eb8565b60006001600160e01b031982166380ac58cd60e01b148061344b57506001600160e01b03198216635b5e139f60e01b145b80610eb85750610eb882613842565b80613464600a5490565b11156134735761347381613867565b611332838383613ac0565b61348882826121a1565b156114b1576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156135cc5760006135076001836146ce565b855490915060009061351b906001906146ce565b90506000866000018281548110613534576135346147bd565b9060005260206000200154905080876000018481548110613557576135576147bd565b60009182526020909120015561356e836001614683565b60008281526001890160205260409020558654879080613590576135906147a7565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610eb8565b6000915050610eb8565b815460009082106136345760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610f4a565b826000018281548110613649576136496147bd565b9060005260206000200154905092915050565b60006001600160a01b0384163b1561375e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906136a0903390899088908890600401614330565b602060405180830381600087803b1580156136ba57600080fd5b505af19250505080156136ea575060408051601f3d908101601f191682019092526136e79181019061419a565b60015b613744573d808015613718576040519150601f19603f3d011682016040523d82523d6000602084013e61371d565b606091505b50805161373c5760405162461bcd60e51b8152600401610f4a906143ea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ab7565b506001949350505050565b6060600e805461111690614711565b606061378382612ce6565b6137e75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f4a565b60006137f1613769565b90506000815111613811576040518060200160405280600081525061219a565b8061381b846129b9565b60405160200161382c9291906142d8565b6040516020818303038152906040529392505050565b60006001600160e01b03198216635a05180f60e01b1480610eb85750610eb882613b78565b600061387282610e9c565b905080156114b157806024600082825461388c91906146ce565b9091555060289050600061389f84611d82565b6001600160a01b0316815260208101919091526040016000205460ff16613aa15760408051600280825260608201835260009260208301908036833701905050905060005b602254811015613a9a576022546000906138fe908561469b565b9050601660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561394e57600080fd5b505afa158015613962573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139869190613efd565b83600081518110613999576139996147bd565b60200260200101906001600160a01b031690816001600160a01b031681525050602282815481106139cc576139cc6147bd565b600091825260209091206002909102015483516001600160a01b0390911690849060019081106139fe576139fe6147bd565b6001600160a01b0392831660209182029290920101526016541663b6f9de9582600086613a2a8a611d82565b613a35426014614683565b6040518663ffffffff1660e01b8152600401613a54949392919061436d565b6000604051808303818588803b158015613a6d57600080fd5b505af1158015613a81573d6000803e3d6000fd5b5050505050508080613a929061474c565b9150506138e4565b5050613aaa565b613aaa81610e38565b6025546000838152602660205260409020555050565b6001600160a01b038316613b1b57613b1681600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b613b3e565b816001600160a01b0316836001600160a01b031614613b3e57613b3e8382613bad565b6001600160a01b038216613b555761133281613c4a565b826001600160a01b0316826001600160a01b031614611332576113328282613cf9565b60006001600160e01b03198216637965db0b60e01b1480610eb857506301ffc9a760e01b6001600160e01b0319831614610eb8565b60006001613bba84611ffc565b613bc491906146ce565b600083815260096020526040902054909150808214613c17576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a54600090613c5c906001906146ce565b6000838152600b6020526040812054600a8054939450909284908110613c8457613c846147bd565b9060005260206000200154905080600a8381548110613ca557613ca56147bd565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480613cdd57613cdd6147a7565b6001900381819060005260206000200160009055905550505050565b6000613d0483611ffc565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b828054613d4990614711565b90600052602060002090601f016020900481019282613d6b5760008555613db1565b82601f10613d8457805160ff1916838001178555613db1565b82800160010185558215613db1579182015b82811115613db1578251825591602001919060010190613d96565b50613dbd929150613e35565b5090565b828054613dcd90614711565b90600052602060002090601f016020900481019282613def5760008555613db1565b82601f10613e085782800160ff19823516178555613db1565b82800160010185558215613db1579182015b82811115613db1578235825591602001919060010190613e1a565b5b80821115613dbd5760008155600101613e36565b600067ffffffffffffffff80841115613e6557613e656147d3565b604051601f8501601f19908116603f01168101908282118183101715613e8d57613e8d6147d3565b81604052809350858152868686011115613ea657600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613ed157600080fd5b61219a83833560208501613e4a565b600060208284031215613ef257600080fd5b813561219a816147e9565b600060208284031215613f0f57600080fd5b815161219a816147e9565b60008060408385031215613f2d57600080fd5b8235613f38816147e9565b91506020830135613f48816147e9565b809150509250929050565b600080600060608486031215613f6857600080fd5b8335613f73816147e9565b92506020840135613f83816147e9565b929592945050506040919091013590565b60008060008060808587031215613faa57600080fd5b8435613fb5816147e9565b93506020850135613fc5816147e9565b925060408501359150606085013567ffffffffffffffff811115613fe857600080fd5b8501601f81018713613ff957600080fd5b61400887823560208401613e4a565b91505092959194509250565b6000806040838503121561402757600080fd5b8235614032816147e9565b91506020830135613f48816147fe565b6000806040838503121561405557600080fd5b8235614060816147e9565b946020939093013593505050565b6000806020838503121561408157600080fd5b823567ffffffffffffffff8082111561409957600080fd5b818501915085601f8301126140ad57600080fd5b8135818111156140bc57600080fd5b8660208260051b85010111156140d157600080fd5b60209290920196919550909350505050565b6000602082840312156140f557600080fd5b813561219a816147fe565b60006020828403121561411257600080fd5b815161219a816147fe565b60006020828403121561412f57600080fd5b5035919050565b6000806040838503121561414957600080fd5b823591506020830135613f48816147e9565b6000806040838503121561416e57600080fd5b50508035926020909101359150565b60006020828403121561418f57600080fd5b813561219a8161480c565b6000602082840312156141ac57600080fd5b815161219a8161480c565b600080602083850312156141ca57600080fd5b823567ffffffffffffffff808211156141e257600080fd5b818501915085601f8301126141f657600080fd5b81358181111561420557600080fd5b8660208285010111156140d157600080fd5b60006020828403121561422957600080fd5b813567ffffffffffffffff81111561424057600080fd5b612ab784828501613ec0565b60006020828403121561425e57600080fd5b5051919050565b6000806040838503121561427857600080fd5b82359150602083013567ffffffffffffffff81111561429657600080fd5b6142a285828601613ec0565b9150509250929050565b600081518084526142c48160208601602086016146e5565b601f01601f19169290920160200192915050565b600083516142ea8184602088016146e5565b8351908301906142fe8183602088016146e5565b01949350505050565b600082516143198184602087016146e5565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614363908301846142ac565b9695505050505050565b600060808201868352602060808185015281875180845260a086019150828901935060005b818110156143b75784516001600160a01b031683529383019391830191600101614392565b50506001600160a01b039690961660408501525050506060015292915050565b60208152600061219a60208301846142ac565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f6175746f7374616b696e673a206d696e74696e672063757272656e746c7920646040820152661a5cd8589b195960ca1b606082015260800190565b60208082526024908201527f6175746f7374616b696e673a206d7573742073656e6420636f727265637420706040820152637269636560e01b606082015260800190565b60208082526036908201526000805160206148238339815191526040820152756520746f20636c61696d207468652062616c616e636560501b606082015260800190565b602080825260399082015260008051602061482383398151915260408201527f6520746f2072656d6f76652070617961626c6520746f6b656e00000000000000606082015260800190565b6020808252602b908201527f6175746f7374616b696e673a206f6e6c79207468652061646d696e2063616e2060408201526a30b2321030903a37b5b2b760a91b606082015260800190565b6020808252602d908201527f6175746f7374616b696e673a20616c6c206175746f7374616b696e672068617660408201526c19481899595b881b5a5b9d1959609a1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260369082015260008051602061482383398151915260408201527519481d1bc81cd95d08185c9d1a5cdd081dd85b1b195d60521b606082015260800190565b600082198211156146965761469661477b565b500190565b6000826146aa576146aa614791565b500490565b60008160001904831182151516156146c9576146c961477b565b500290565b6000828210156146e0576146e061477b565b500390565b60005b838110156147005781810151838201526020016146e8565b8381111561244d5750506000910152565b600181811c9082168061472557607f821691505b6020821081141561474657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156147605761476061477b565b5060010190565b60008261477657614776614791565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461110457600080fd5b801515811461110457600080fd5b6001600160e01b03198116811461110457600080fdfe6175746f7374616b696e673a206d75737420686176652061646d696e20726f6ca26469706673582212206c1ef8802cd7afe9f909e924711a6715e6b14122eacdf8aa18e74521b4de830e64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000003a0cb1d6b195ea497b060cc99a292e37e5d275290000000000000000000000000000000000000000000000000000000000002d31000000000000000000000000000000000000000000000000000000000000000f4254432d42756c6c646f67204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a426974446f672d4e465400000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): BTC-Bulldog NFT
Arg [1] : symbol (string): BitDog-NFT
Arg [2] : mintPrice (uint256): 50000000000000000
Arg [3] : admin (address): 0x3A0Cb1D6B195Ea497B060Cc99A292E37E5D27529
Arg [4] : max (uint256): 11569

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [3] : 0000000000000000000000003a0cb1d6b195ea497b060cc99a292e37e5d27529
Arg [4] : 0000000000000000000000000000000000000000000000000000000000002d31
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 4254432d42756c6c646f67204e46540000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 426974446f672d4e465400000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4627:14662:19:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6780:9;;6751:15;885:14:4;6751:38:19;6748:160;;6807:17;;-1:-1:-1;;;;;6807:17:19;6799:56;6851:3;6835:14;:9;6847:2;6835:14;:::i;:::-;:19;;;;:::i;:::-;6799:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6864:36:19;6896:3;6880:14;:9;6892:2;6880:14;:::i;:::-;:19;;;;:::i;:::-;6864:15;:36::i;:::-;4627:14662;;;;;16179:137;;;;;;;;;;-1:-1:-1;16179:137:19;;;;;:::i;:::-;;:::i;:::-;;;10585:25:20;;;10573:2;10558:18;16179:137:19;;;;;;;;14589:313;;;;;;;;;;;;;:::i;12093:198::-;;;;;;;;;;-1:-1:-1;12093:198:19;;;;;:::i;:::-;;:::i;:::-;;;10412:14:20;;10405:22;10387:41;;10375:2;10360:18;12093:198:19;10247:187:20;9933:839:19;;;;;;:::i;:::-;;:::i;2456:100:6:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3923:221::-;;;;;;;;;;-1:-1:-1;3923:221:6;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9431:32:20;;;9413:51;;9401:2;9386:18;3923:221:6;9267:203:20;3453:404:6;;;;;;;;;;-1:-1:-1;3453:404:6;;;;;:::i;:::-;;:::i;9190:81:19:-;;;;;;;;;;-1:-1:-1;9259:6:19;;9190:81;;9279:648;;;:::i;8736:231::-;;;;;;;;;;-1:-1:-1;8736:231:19;;;;;:::i;:::-;;:::i;1590:113:8:-;;;;;;;;;;-1:-1:-1;1678:10:8;:17;1590:113;;10780:586:19;;;;;;;;;;-1:-1:-1;10780:586:19;;;;;:::i;:::-;;:::i;5540:34::-;;;;;;;;;;;;;;;;4813:305:6;;;;;;;;;;-1:-1:-1;4813:305:6;;;;;:::i;:::-;;:::i;12909:861:19:-;;;;;;;;;;;;;:::i;4273:123:0:-;;;;;;;;;;-1:-1:-1;4273:123:0;;;;;:::i;:::-;4339:7;4366:12;;;;;;;;;;:22;;;;4273:123;2201:165:1;;;;;;;;;;-1:-1:-1;2201:165:1;;;;;:::i;:::-;;:::i;1258:256:8:-;;;;;;;;;;-1:-1:-1;1258:256:8;;;;;:::i;:::-;;:::i;5784:74:19:-;;;;;;;;;;-1:-1:-1;5784:74:19;;;;-1:-1:-1;;;;;5784:74:19;;;2724:174:1;;;;;;;;;;-1:-1:-1;2724:174:1;;;;;:::i;:::-;;:::i;12448:455:19:-;;;;;;;;;;;;;:::i;5982:32::-;;;;;;;;;;;;;;;;5189:151:6;;;;;;;;;;-1:-1:-1;5189:151:6;;;;;:::i;:::-;;:::i;5049:27:19:-;;;;;;;;;;;;;:::i;5476:32::-;;;;;;;;;;;;;;;;14908:319;;;;;;;;;;;;;:::i;6019:28::-;;;;;;;;;;;;;;;;7349:94;;;;;;;;;;-1:-1:-1;7428:9:19;;7349:94;;8973:209;;;;;;;;;;-1:-1:-1;8973:209:19;;;;;:::i;:::-;;:::i;1780:233:8:-;;;;;;;;;;-1:-1:-1;1780:233:8;;;;;:::i;:::-;;:::i;6101:44:19:-;;;;;;;;;;-1:-1:-1;6101:44:19;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;6101:44:19;;;5222:27;;;;;;;;;;-1:-1:-1;5222:27:19;;;;-1:-1:-1;;;;;5222:27:19;;;8529:201;;;;;;;;;;-1:-1:-1;8529:201:19;;;;;:::i;:::-;;:::i;16409:319::-;;;;;;;;;;-1:-1:-1;16409:319:19;;;;;:::i;:::-;;:::i;5370:26::-;;;;;;;;;;;;;;;;2150:239:6;;;;;;;;;;-1:-1:-1;2150:239:6;;;;;:::i;:::-;;:::i;7021:206:19:-;;;;;;;;;;-1:-1:-1;7021:206:19;;;;;:::i;:::-;;:::i;16734:517::-;;;;;;;;;;-1:-1:-1;16734:517:19;;;;;:::i;:::-;;:::i;5904:34::-;;;;;;;;;;-1:-1:-1;5904:34:19;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;10160:32:20;;;10142:51;;10224:2;10209:18;;10202:34;;;;10115:18;5904:34:19;9968:274:20;1880:208:6;;;;;;;;;;-1:-1:-1;1880:208:6;;;;;:::i;:::-;;:::i;5702:77:19:-;;;;;;;;;;-1:-1:-1;5702:77:19;;;;-1:-1:-1;;;;;5702:77:19;;;5943:30;;;;;;;;;;-1:-1:-1;5943:30:19;;;;;:::i;:::-;;:::i;7893:296::-;;;;;;;;;;-1:-1:-1;7893:296:19;;;;;:::i;:::-;;:::i;1656:145:1:-;;;;;;;;;;-1:-1:-1;1656:145:1;;;;;:::i;:::-;;:::i;5579:32:19:-;;;;;;;;;;-1:-1:-1;5579:32:19;;;;;;;;3945:139:0;;;;;;;;;;-1:-1:-1;3945:139:0;;;;;:::i;:::-;;:::i;7668:216:19:-;;;;;;;;;;-1:-1:-1;7668:216:19;;;;;:::i;:::-;;:::i;2625:104:6:-;;;;;;;;;;;;;:::i;4970:39:19:-;;;;;;;;;;-1:-1:-1;4970:39:19;;;;;;15233:296;;;;;;;;;;-1:-1:-1;15233:296:19;;;;;:::i;:::-;;:::i;2401:49:0:-;;;;;;;;;;-1:-1:-1;2401:49:0;2446:4;2401:49;;4216:295:6;;;;;;;;;;-1:-1:-1;4216:295:6;;;;;:::i;:::-;;:::i;7560:102:19:-;;;;;;;;;;-1:-1:-1;7645:11:19;;7560:102;;6247:31;;;;;;;;;;;;;;;;5401:36;;;;;;;;;;;;;;;;7233:110;;;;;;;;;;;;;:::i;17257:324::-;;;;;;;;;;-1:-1:-1;17257:324:19;;;;;:::i;:::-;;:::i;5863:32::-;;;;;;;;;;-1:-1:-1;5863:32:19;;;;-1:-1:-1;;;;;5863:32:19;;;11372:101;;;;;;;;;;-1:-1:-1;11372:101:19;;;;;:::i;:::-;11429:7;11451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;11451:16:19;;11372:101;5411:285:6;;;;;;;;;;-1:-1:-1;5411:285:6;;;;;:::i;:::-;;:::i;5338:27:19:-;;;;;;;;;;-1:-1:-1;5338:27:19;;;;-1:-1:-1;;;5338:27:19;;;;;;18096:212;;;;;;;;;;-1:-1:-1;18096:212:19;;;;;:::i;:::-;;:::i;11620:160::-;;;;;;;;;;-1:-1:-1;11620:160:19;;;;;:::i;:::-;;:::i;1975:134:1:-;;;;;;;;;;-1:-1:-1;1975:134:1;;;;;:::i;:::-;;:::i;16322:81:19:-;;;:::i;8313:210::-;;;;;;;;;;-1:-1:-1;8313:210:19;;;;;:::i;:::-;;:::i;2459:170:1:-;;;;;;;;;;-1:-1:-1;2459:170:1;;;;;:::i;:::-;;:::i;5162:28:19:-;;;;;;;;;;;;;;;;5254:35;;;;;;;;;;;;;;;;15535:305;;;;;;;;;;-1:-1:-1;15535:305:19;;;;;:::i;:::-;;:::i;5442:29::-;;;;;;;;;;;;;;;;6919:96;;;;;;;;;;;;;:::i;4582:164:6:-;;;;;;;;;;-1:-1:-1;4582:164:6;;;;;:::i;:::-;-1:-1:-1;;;;;4703:25:6;;;4679:4;4703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4582:164;17587:503:19;;;;;;;;;;-1:-1:-1;17587:503:19;;;;;:::i;:::-;;:::i;15846:327::-;;;;;;;;;;-1:-1:-1;15846:327:19;;;;;:::i;:::-;;:::i;6150:52::-;;;;;;;;;;-1:-1:-1;6150:52:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;5309:24;;;;;;;;;;-1:-1:-1;5309:24:19;;;;-1:-1:-1;;;;;5309:24:19;;;12297:145;;;;;;;;;;;;;:::i;19046:239::-;19143:6;19123:17;;:26;;;;:::i;:::-;19102:17;:47;1678:10:8;:17;19189:20:19;;:6;:20;:::i;:::-;19172:13;;:38;;;;:::i;:::-;19156:13;:54;;;;19235:6;19217:14;;:24;;;;;;;:::i;:::-;;;;;;;;19273:6;19248:21;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;;19046:239:19:o;16179:137::-;16247:7;16287:23;;;:14;:23;;;;;;16271:13;;:39;;16287:23;16271:39;:::i;:::-;16264:46;16179:137;-1:-1:-1;;16179:137:19:o;14589:313::-;14651:7;14667:10;14680:21;14690:10;14680:9;:21::i;:::-;14667:34;;14708:13;14736:6;14732:146;14750:5;14746:1;:9;14732:146;;;14772:12;14787:34;14807:10;14819:1;14787:19;:34::i;:::-;14772:49;;14841:29;14862:7;14841:20;:29::i;:::-;14832:38;;;;:::i;:::-;;;14761:117;14757:3;;;;;:::i;:::-;;;;14732:146;;;-1:-1:-1;14891:5:19;14589:313;-1:-1:-1;;14589:313:19:o;12093:198::-;12229:4;12249:36;12273:11;12249:23;:36::i;9933:839::-;10010:7;;-1:-1:-1;;;10010:7:19;;;;10002:59;;;;-1:-1:-1;;;10002:59:19;;;;;;;:::i;:::-;;;;;;;;;10088:2;10077:8;:13;10068:74;;;;-1:-1:-1;;;10068:74:19;;24913:2:20;10068:74:19;;;24895:21:20;24952:2;24932:18;;;24925:30;24991:34;24971:18;;;24964:62;-1:-1:-1;;;25042:18:20;;;25035:45;25097:19;;10068:74:19;24711:411:20;10068:74:19;10182:11;;10171:22;;:8;:22;:::i;:::-;10157:9;:37;;10149:86;;;;-1:-1:-1;;;10149:86:19;;;;;;;:::i;:::-;10291:9;;10279:8;10251:25;:15;885:14:4;;793:114;10251:25:19;:36;;;;:::i;:::-;10250:50;10242:108;;;;-1:-1:-1;;;10242:108:19;;;;;;;:::i;:::-;10361:6;10357:381;10377:8;10373:1;:12;10357:381;;;10400:44;10406:10;10418:25;:15;885:14:4;;793:114;10418:25:19;10400:5;:44::i;:::-;10490:10;10453:7;:34;10461:25;:15;885:14:4;;793:114;10461:25:19;10453:34;;;;;;;;;;;;:47;;;;;-1:-1:-1;;;;;10453:47:19;;;;;-1:-1:-1;;;;;10453:47:19;;;;;;10553:13;;10509:14;:41;10524:25;:15;885:14:4;;793:114;10524:25:19;10509:41;;;;;;;;;;;-1:-1:-1;10509:41:19;:57;10575:119;10588:25;:15;885:14:4;;793:114;10588:25:19;10639:43;10656:25;:15;885:14:4;;793:114;10656:25:19;10639:16;:43::i;:::-;10622:70;;;;;;;;:::i;:::-;;;;;;;;;;;;;10575:12;:119::i;:::-;10703:27;:15;1004:19:4;;1022:1;1004:19;;;915:127;10703:27:19;10387:3;;;;:::i;:::-;;;;10357:381;;;;10744:22;10757:8;10744:12;:22::i;:::-;9933:839;:::o;2456:100:6:-;2510:13;2543:5;2536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2456:100;:::o;3923:221::-;3999:7;4027:16;4035:7;4027;:16::i;:::-;4019:73;;;;-1:-1:-1;;;4019:73:6;;22826:2:20;4019:73:6;;;22808:21:20;22865:2;22845:18;;;22838:30;22904:34;22884:18;;;22877:62;-1:-1:-1;;;22955:18:20;;;22948:42;23007:19;;4019:73:6;22624:408:20;4019:73:6;-1:-1:-1;4112:24:6;;;;:15;:24;;;;;;-1:-1:-1;;;;;4112:24:6;;3923:221::o;3453:404::-;3534:13;3550:23;3565:7;3550:14;:23::i;:::-;3534:39;;3598:5;-1:-1:-1;;;;;3592:11:6;:2;-1:-1:-1;;;;;3592:11:6;;;3584:57;;;;-1:-1:-1;;;3584:57:6;;25745:2:20;3584:57:6;;;25727:21:20;25784:2;25764:18;;;25757:30;25823:34;25803:18;;;25796:62;-1:-1:-1;;;25874:18:20;;;25867:31;25915:19;;3584:57:6;25543:397:20;3584:57:6;681:10:3;-1:-1:-1;;;;;3662:21:6;;;;:69;;-1:-1:-1;3687:44:6;3711:5;681:10:3;4582:164:6;:::i;3687:44::-;3654:161;;;;-1:-1:-1;;;3654:161:6;;19134:2:20;3654:161:6;;;19116:21:20;19173:2;19153:18;;;19146:30;19212:34;19192:18;;;19185:62;19283:26;19263:18;;;19256:54;19327:19;;3654:161:6;18932:420:20;3654:161:6;3828:21;3837:2;3841:7;3828:8;:21::i;:::-;3523:334;3453:404;;:::o;9279:648:19:-;9327:7;;-1:-1:-1;;;9327:7:19;;;;9319:59;;;;-1:-1:-1;;;9319:59:19;;;;;;;:::i;:::-;9407:11;;9393:9;:26;;9385:75;;;;-1:-1:-1;;;9385:75:19;;;;;;;:::i;:::-;9509:9;;9476:15;885:14:4;9476:29:19;;9504:1;9476:29;:::i;:::-;9475:43;9467:101;;;;-1:-1:-1;;;9467:101:19;;;;;;;:::i;:::-;9577:44;9583:10;9595:25;:15;885:14:4;;793:114;9577:44:19;9665:10;9628:7;:34;9636:25;:15;885:14:4;;793:114;9636:25:19;9628:34;;;;;;;;;;;;:47;;;;;-1:-1:-1;;;;;9628:47:19;;;;;-1:-1:-1;;;;;9628:47:19;;;;;;9726:13;;9682:14;:41;9697:25;:15;885:14:4;;793:114;9697:25:19;9682:41;;;;;;;;;;;-1:-1:-1;9682:41:19;:57;9746:119;9759:25;:15;885:14:4;;793:114;9746:119:19;9872:27;:15;1004:19:4;;1022:1;1004:19;;;915:127;9872:27:19;9906:15;9919:1;9906:12;:15::i;:::-;9279:648::o;8736:231::-;8823:41;2446:4:0;681:10:3;3945:139:0;:::i;8823:41:19:-;8815:107;;;;-1:-1:-1;;;8815:107:19;;27817:2:20;8815:107:19;;;27799:21:20;27856:2;27836:18;;;27829:30;-1:-1:-1;;;;;;;;;;;27875:18:20;;;27868:62;-1:-1:-1;;;27946:18:20;;;27939:51;28007:19;;8815:107:19;27615:417:20;8815:107:19;8929:32;8942:7;8951:9;8929:12;:32::i;:::-;8736:231;;:::o;10780:586::-;10855:41;2446:4:0;681:10:3;3945:139:0;:::i;10855:41:19:-;10847:103;;;;-1:-1:-1;;;10847:103:19;;14687:2:20;10847:103:19;;;14669:21:20;14726:2;14706:18;;;14699:30;-1:-1:-1;;;;;;;;;;;14745:18:20;;;14738:62;-1:-1:-1;;;14816:18:20;;;14809:47;14873:19;;10847:103:19;14485:413:20;10847:103:19;10966:9;10961:400;10981:21;;;10961:400;;;11017:47;11023:10;;11034:1;11023:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;11038:15;885:14:4;10400:5:19;:44::i;11017:47::-;11110:10;;11121:1;11110:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;11073:7;:34;11081:25;:15;885:14:4;;793:114;11081:25:19;11073:34;;;;;;;;;;;;:50;;;;;-1:-1:-1;;;;;11073:50:19;;;;;-1:-1:-1;;;;;11073:50:19;;;;;;11176:13;;11132:14;:41;11147:25;:15;885:14:4;;793:114;11147:25:19;11132:41;;;;;;;;;;;-1:-1:-1;11132:41:19;:57;11198:119;11211:25;:15;885:14:4;;793:114;11198:119:19;11326:27;:15;1004:19:4;;1022:1;1004:19;;;915:127;11326:27:19;11004:3;;;;:::i;:::-;;;;10961:400;;4813:305:6;4974:41;681:10:3;5007:7:6;4974:18;:41::i;:::-;4966:103;;;;-1:-1:-1;;;4966:103:6;;;;;;;:::i;:::-;5082:28;5092:4;5098:2;5102:7;5082:9;:28::i;12909:861:19:-;12964:10;12977:21;12987:10;12977:9;:21::i;:::-;12964:34;;13005:13;13033:6;13029:196;13047:5;13043:1;:9;13029:196;;;13069:12;13084:34;13104:10;13116:1;13084:19;:34::i;:::-;13069:49;;13138:29;13159:7;13138:20;:29::i;:::-;13129:38;;;;:::i;:::-;13204:13;;13178:23;;;;:14;:23;;;;;;:39;;;;13129:38;-1:-1:-1;13054:3:19;;;;:::i;:::-;;;;13029:196;;;-1:-1:-1;13234:9:19;;13231:534;;13279:16;;;13293:1;13279:16;;;;;;;;13255:21;;13279:16;;;;;;;;;;-1:-1:-1;13279:16:19;13255:40;;13310:6;13306:415;13326:11;:18;13322:22;;13306:415;;;13385:11;:18;13365:11;;13379:24;;:5;:24;:::i;:::-;13365:38;;13428:6;;;;;;;;;-1:-1:-1;;;;;13428:6:19;-1:-1:-1;;;;;13428:11:19;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13418:4;13423:1;13418:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;13418:23:19;;;-1:-1:-1;;;;;13418:23:19;;;;;13474:11;13486:1;13474:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:27;13456:7;;-1:-1:-1;;;;;13474:27:19;;;;13456:4;;13474:27;;13456:7;;;;;;:::i;:::-;-1:-1:-1;;;;;13456:46:19;;;:7;;;;;;;;;:46;13517:6;;;:57;13582:6;13517;13624:4;13645:10;13672:20;:15;13690:2;13672:20;:::i;:::-;13517:190;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13350:371;13346:3;;;;;:::i;:::-;;;;13306:415;;;;13752:5;13731:17;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;;12957:813:19;;12909:861::o;2201:165:1:-;2286:30;2302:4;2308:7;2286:15;:30::i;:::-;2327:18;;;;:12;:18;;;;;:31;;2350:7;2327:22;:31::i;1258:256:8:-;1355:7;1391:23;1408:5;1391:16;:23::i;:::-;1383:5;:31;1375:87;;;;-1:-1:-1;;;1375:87:8;;13856:2:20;1375:87:8;;;13838:21:20;13895:2;13875:18;;;13868:30;13934:34;13914:18;;;13907:62;-1:-1:-1;;;13985:18:20;;;13978:41;14036:19;;1375:87:8;13654:407:20;1375:87:8;-1:-1:-1;;;;;;1480:19:8;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1258:256::o;2724:174:1:-;2812:33;2831:4;2837:7;2812:18;:33::i;:::-;2856:18;;;;:12;:18;;;;;:34;;2882:7;2856:25;:34::i;12448:455:19:-;12494:10;12507:21;12517:10;12507:9;:21::i;:::-;12494:34;;12535:13;12563:6;12559:229;12577:5;12573:1;:9;12559:229;;;12599:12;12614:34;12634:10;12646:1;12614:19;:34::i;:::-;12599:49;;12701:29;12722:7;12701:20;:29::i;:::-;12692:38;;;;:::i;:::-;12767:13;;12741:23;;;;:14;:23;;;;;;:39;;;;12692:38;-1:-1:-1;12584:3:19;;;;:::i;:::-;;;;12559:229;;;-1:-1:-1;12797:9:19;;12794:104;;12818:35;;12826:10;;12818:35;;;;;12847:5;;12818:35;;;;12847:5;12826:10;12818:35;;;;;;;;;;;;;;;;;;;;;12885:5;12864:17;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;12487:416:19;;12448:455::o;5189:151:6:-;5293:39;5310:4;5316:2;5320:7;5293:39;;;;;;;;;;;;:16;:39::i;5049:27:19:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14908:319::-;14965:41;2446:4:0;681:10:3;3945:139:0;:::i;14965:41:19:-;14957:108;;;;-1:-1:-1;;;14957:108:19;;;;;;;:::i;:::-;15162:6;;15203:17;;-1:-1:-1;;;;;15162:6:19;;;;15154:67;;15179:41;;:21;:41;:::i;:::-;15154:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8973:209;9047:41;2446:4:0;681:10:3;3945:139:0;:::i;9047:41:19:-;9039:113;;;;-1:-1:-1;;;9039:113:19;;23239:2:20;9039:113:19;;;23221:21:20;23278:2;23258:18;;;23251:30;-1:-1:-1;;;;;;;;;;;23297:18:20;;;23290:62;23388:29;23368:18;;;23361:57;23435:19;;9039:113:19;23037:423:20;9039:113:19;9159:7;:17;;;;;-1:-1:-1;;;9159:17:19;-1:-1:-1;;;;9159:17:19;;;;;;;;;8973:209::o;1780:233:8:-;1855:7;1891:30;1678:10;:17;;1590:113;1891:30;1883:5;:38;1875:95;;;;-1:-1:-1;;;1875:95:8;;26565:2:20;1875:95:8;;;26547:21:20;26604:2;26584:18;;;26577:30;26643:34;26623:18;;;26616:62;-1:-1:-1;;;26694:18:20;;;26687:42;26746:19;;1875:95:8;26363:408:20;1875:95:8;1988:10;1999:5;1988:17;;;;;;;;:::i;:::-;;;;;;;;;1981:24;;1780:233;;;:::o;8529:201:19:-;8596:41;2446:4:0;681:10:3;3945:139:0;:::i;8596:41:19:-;8588:106;;;;-1:-1:-1;;;8588:106:19;;17883:2:20;8588:106:19;;;17865:21:20;17922:2;17902:18;;;17895:30;-1:-1:-1;;;;;;;;;;;17941:18:20;;;17934:62;-1:-1:-1;;;18012:18:20;;;18005:50;18072:19;;8588:106:19;17681:416:20;8588:106:19;8701:23;;;;:13;;:23;;;;;:::i;16409:319::-;16499:41;2446:4:0;681:10:3;3945:139:0;:::i;16499:41:19:-;16491:97;;;;-1:-1:-1;;;16491:97:19;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;16628:31:19;;;;;-1:-1:-1;;;16666:26:19;;;16699:11;:23;;;;;;;-1:-1:-1;16699:23:19;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16699:23:19;;;;;;;;;;;;;;;16409:319::o;2150:239:6:-;2222:7;2258:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2258:16:6;2293:19;2285:73;;;;-1:-1:-1;;;2285:73:6;;20396:2:20;2285:73:6;;;20378:21:20;20435:2;20415:18;;;20408:30;20474:34;20454:18;;;20447:62;-1:-1:-1;;;20525:18:20;;;20518:39;20574:19;;2285:73:6;20194:405:20;7021:206:19;7094:41;2446:4:0;681:10:3;3945:139:0;:::i;7094:41:19:-;7086:105;;;;-1:-1:-1;;;7086:105:19;;24493:2:20;7086:105:19;;;24475:21:20;24532:2;24512:18;;;24505:30;24571:34;24551:18;;;24544:62;-1:-1:-1;;;24622:18:20;;;24615:49;24681:19;;7086:105:19;24291:415:20;7086:105:19;7202:19;:13;7218:3;;7202:19;:::i;16734:517::-;16800:12;16832:41;16800:12;681:10:3;3945:139:0;:::i;16832:41:19:-;16824:111;;;;-1:-1:-1;;;16824:111:19;;;;;;;:::i;:::-;16950:6;16946:277;16966:11;:18;16962:22;;16946:277;;;17056:13;-1:-1:-1;;;;;17008:62:19;17016:11;17028:1;17016:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:27;-1:-1:-1;;;;;17016:27:19;17008:62;17005:207;;;17103:11;17115:18;;:22;;17136:1;;17115:22;:::i;:::-;17103:35;;;;;;;;:::i;:::-;;;;;;;;;;;17086:11;17098:1;17086:14;;;;;;;;:::i;:::-;;;;;;;;;:52;;:14;;;;;:52;;-1:-1:-1;;;;;;17086:52:19;-1:-1:-1;;;;;17086:52:19;;;;;;;;;;;;;;;;;17153:11;:17;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;17153:17:19;;;;;;;;;-1:-1:-1;;;;;;17153:17:19;;;;;;;;;;;;;;16734:517;-1:-1:-1;;;16734:517:19:o;17005:207::-;16986:3;;;;:::i;:::-;;;;16946:277;;;-1:-1:-1;17240:5:19;;16734:517;-1:-1:-1;;16734:517:19:o;5904:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5904:34:19;;;;-1:-1:-1;5904:34:19;:::o;1880:208:6:-;1952:7;-1:-1:-1;;;;;1980:19:6;;1972:74;;;;-1:-1:-1;;;1972:74:6;;19985:2:20;1972:74:6;;;19967:21:20;20024:2;20004:18;;;19997:30;20063:34;20043:18;;;20036:62;-1:-1:-1;;;20114:18:20;;;20107:40;20164:19;;1972:74:6;19783:406:20;1972:74:6;-1:-1:-1;;;;;;2064:16:6;;;;;:9;:16;;;;;;;1880:208::o;5943:30:19:-;;;;;;;;;;;;7893:296;7986:41;2446:4:0;681:10:3;3945:139:0;:::i;7986:41:19:-;7978:111;;;;-1:-1:-1;;;7978:111:19;;15870:2:20;7978:111:19;;;15852:21:20;15909:2;15889:18;;;15882:30;15948:34;15928:18;;;15921:62;16019:27;15999:18;;;15992:55;16064:19;;7978:111:19;15668:421:20;7978:111:19;8100:6;8096:88;8112:14;;;8096:88;;;8172:4;8141:19;:28;8161:4;;8166:1;8161:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;8141:28:19;;;;;;;;;;;;-1:-1:-1;8141:28:19;:35;;-1:-1:-1;;8141:35:19;;;;;;;;;;8128:3;;;;:::i;:::-;;;;8096:88;;1656:145:1;1738:7;1765:18;;;:12;:18;;;;;:28;;1787:5;1765:21;:28::i;:::-;1758:35;1656:145;-1:-1:-1;;;1656:145:1:o;3945:139:0:-;4023:4;4047:12;;;;;;;;;;;-1:-1:-1;;;;;4047:29:0;;;;;;;;;;;;;;;3945:139::o;7668:216:19:-;7738:41;2446:4:0;681:10:3;3945:139:0;:::i;7738:41:19:-;7730:101;;;;-1:-1:-1;;;7730:101:19;;25329:2:20;7730:101:19;;;25311:21:20;25368:2;25348:18;;;25341:30;-1:-1:-1;;;;;;;;;;;25387:18:20;;;25380:62;-1:-1:-1;;;25458:18:20;;;25451:45;25513:19;;7730:101:19;25127:411:20;7730:101:19;7838:40;2446:4:0;7869:8:19;7838:10;:40::i;2625:104:6:-;2681:13;2714:7;2707:14;;;;;:::i;15233:296:19:-;15306:41;2446:4:0;681:10:3;3945:139:0;:::i;15306:41:19:-;15298:108;;;;-1:-1:-1;;;15298:108:19;;;;;;;:::i;:::-;15495:17;:28;;-1:-1:-1;;;;;;15495:28:19;-1:-1:-1;;;;;15495:28:19;;;;;;;;;;15233:296::o;4216:295:6:-;-1:-1:-1;;;;;4319:24:6;;681:10:3;4319:24:6;;4311:62;;;;-1:-1:-1;;;4311:62:6;;17106:2:20;4311:62:6;;;17088:21:20;17145:2;17125:18;;;17118:30;17184:27;17164:18;;;17157:55;17229:18;;4311:62:6;16904:349:20;4311:62:6;681:10:3;4386:32:6;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4386:42:6;;;;;;;;;;;;:53;;-1:-1:-1;;4386:53:6;;;;;;;;;;4455:48;;10387:41:20;;;4386:42:6;;681:10:3;4455:48:6;;10360:18:20;4455:48:6;;;;;;;4216:295;;:::o;7233:110:19:-;7286:11;7312:25;:15;885:14:4;;793:114;7312:25:19;7305:32;;7233:110;:::o;17257:324::-;17335:41;2446:4:0;681:10:3;3945:139:0;:::i;17335:41:19:-;17327:97;;;;-1:-1:-1;;;17327:97:19;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;17464:34:19;;;;;-1:-1:-1;;;17505:32:19;;;17544:13;:31;;;;;;;-1:-1:-1;17544:31:19;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17544:31:19;;;;;;;;;;;;;;;17257:324::o;5411:285:6:-;5543:41;681:10:3;5576:7:6;5543:18;:41::i;:::-;5535:103;;;;-1:-1:-1;;;5535:103:6;;;;;;;:::i;:::-;5649:39;5663:4;5669:2;5673:7;5682:5;5649:13;:39::i;:::-;5411:285;;;;:::o;18096:212:19:-;18166:41;2446:4:0;681:10:3;3945:139:0;:::i;18166:41:19:-;18158:110;;;;-1:-1:-1;;;18158:110:19;;12187:2:20;18158:110:19;;;12169:21:20;12226:2;12206:18;;;12199:30;-1:-1:-1;;;;;;;;;;;12245:18:20;;;12238:62;12336:26;12316:18;;;12309:54;12380:19;;18158:110:19;11985:420:20;18158:110:19;18275:14;:27;18096:212::o;11620:160::-;11711:13;11740:34;11766:7;11740:25;:34::i;1975:134:1:-;2047:7;2074:18;;;:12;:18;;;;;:27;;:25;:27::i;16322:81:19:-;16371:26;16387:9;16371:15;:26::i;8313:210::-;8385:41;2446:4:0;681:10:3;3945:139:0;:::i;8385:41:19:-;8377:110;;;;-1:-1:-1;;;8377:110:19;;13015:2:20;8377:110:19;;;12997:21:20;13054:2;13034:18;;;13027:30;-1:-1:-1;;;;;;;;;;;13073:18:20;;;13066:62;13164:26;13144:18;;;13137:54;13208:19;;8377:110:19;12813:420:20;8377:110:19;8494:12;:23;;-1:-1:-1;;;;;;8494:23:19;-1:-1:-1;;;;;8494:23:19;;;;;;;;;;8313:210::o;2459:170:1:-;2545:31;2562:4;2568:7;2545:16;:31::i;15535:305:19:-;15611:41;2446:4:0;681:10:3;3945:139:0;:::i;15611:41:19:-;15603:108;;;;-1:-1:-1;;;15603:108:19;;;;;;;:::i;:::-;15806:17;:28;;-1:-1:-1;;;;;;15806:28:19;-1:-1:-1;;;;;15806:28:19;;;;;;;;;;15535:305::o;6919:96::-;6963:13;6996;6989:20;;;;;:::i;17587:503::-;17649:12;17679:41;17649:12;681:10:3;3945:139:0;:::i;17679:41:19:-;17671:111;;;;-1:-1:-1;;;17671:111:19;;;;;;;:::i;:::-;17795:6;17791:273;17811:13;:20;17807:24;;17791:273;;;17904:8;-1:-1:-1;;;;;17853:60:19;17861:13;17875:1;17861:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:30;-1:-1:-1;;;;;17861:30:19;17853:60;17850:205;;;17946:13;17960:20;;:24;;17983:1;;17960:24;:::i;:::-;17946:39;;;;;;;;:::i;:::-;;;;;;;;;;;17927:13;17941:1;17927:16;;;;;;;;:::i;:::-;;;;;;;;;:58;;:16;;;;;:58;;-1:-1:-1;;;;;;17927:58:19;-1:-1:-1;;;;;17927:58:19;;;;;;;;;;;;;;;;;17998:13;:19;;;;;;;:::i;17850:205::-;17833:3;;;;:::i;:::-;;;;17791:273;;15846:327;15920:41;2446:4:0;681:10:3;3945:139:0;:::i;15920:41:19:-;15912:108;;;;-1:-1:-1;;;15912:108:19;;;;;;;:::i;:::-;16136:30;;-1:-1:-1;;;16136:30:19;;16160:4;16136:30;;;9413:51:20;-1:-1:-1;;;;;16109:14:19;;;;;16124:10;;16109:14;;16136:15;;9386:18:20;;16136:30:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16109:58;;-1:-1:-1;;;;;;16109:58:19;;;;;;;-1:-1:-1;;;;;10160:32:20;;;16109:58:19;;;10142:51:20;10209:18;;;10202:34;10115:18;;16109:58:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;12297:145::-;12341:7;12361:13;1678:10:8;:17;;1590:113;12361:13:19;12358:31;;-1:-1:-1;12388:1:19;;12297:145::o;12358:31::-;1678:10:8;:17;12405::19;;:31;;;;:::i;6678:112:0:-;6757:25;6768:4;6774:7;6757:10;:25::i;6621:152:11:-;6691:4;6715:50;6720:3;-1:-1:-1;;;;;6740:23:11;;6715:4;:50::i;937:237:8:-;1039:4;-1:-1:-1;;;;;;1063:50:8;;-1:-1:-1;;;1063:50:8;;:103;;;1130:36;1154:11;1130:23;:36::i;9077:382:6:-;-1:-1:-1;;;;;9157:16:6;;9149:61;;;;-1:-1:-1;;;9149:61:6;;22047:2:20;9149:61:6;;;22029:21:20;;;22066:18;;;22059:30;22125:34;22105:18;;;22098:62;22177:18;;9149:61:6;21845:356:20;9149:61:6;9230:16;9238:7;9230;:16::i;:::-;9229:17;9221:58;;;;-1:-1:-1;;;9221:58:6;;15105:2:20;9221:58:6;;;15087:21:20;15144:2;15124:18;;;15117:30;15183;15163:18;;;15156:58;15231:18;;9221:58:6;14903:352:20;9221:58:6;9292:45;9321:1;9325:2;9329:7;9292:20;:45::i;:::-;-1:-1:-1;;;;;9350:13:6;;;;;;:9;:13;;;;;:18;;9367:1;;9350:13;:18;;9367:1;;9350:18;:::i;:::-;;;;-1:-1:-1;;9379:16:6;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9379:21:6;-1:-1:-1;;;;;9379:21:6;;;;;;;;9418:33;;9379:16;;;9418:33;;9379:16;;9418:33;9077:382;;:::o;284:723:18:-;340:13;561:10;557:53;;-1:-1:-1;;588:10:18;;;;;;;;;;;;-1:-1:-1;;;588:10:18;;;;;284:723::o;557:53::-;635:5;620:12;676:78;683:9;;676:78;;709:8;;;;:::i;:::-;;-1:-1:-1;732:10:18;;-1:-1:-1;740:2:18;732:10;;:::i;:::-;;;676:78;;;764:19;796:6;786:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;786:17:18;;764:39;;814:154;821:10;;814:154;;848:11;858:1;848:11;;:::i;:::-;;-1:-1:-1;917:10:18;925:2;917:5;:10;:::i;:::-;904:24;;:2;:24;:::i;:::-;891:39;;874:6;881;874:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;874:56:18;;;;;;;;-1:-1:-1;945:11:18;954:2;945:11;;:::i;:::-;;;814:154;;;992:6;284:723;-1:-1:-1;;;;284:723:18:o;1240:217:10:-;1340:16;1348:7;1340;:16::i;:::-;1332:75;;;;-1:-1:-1;;;1332:75:10;;20806:2:20;1332:75:10;;;20788:21:20;20845:2;20825:18;;;20818:30;20884:34;20864:18;;;20857:62;-1:-1:-1;;;20935:18:20;;;20928:44;20989:19;;1332:75:10;20604:410:20;1332:75:10;1418:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;18314:726:19:-;18369:16;18397:11;;18388:6;:20;;;;:::i;:::-;18369:39;;18479:22;18504:11;18479:36;;18524:22;18584:3;18569:13;;18549:17;:33;;;;:::i;:::-;:38;;;;:::i;:::-;18604:17;;18596:51;;18524:63;;-1:-1:-1;;;;;;18604:17:19;;18596:51;;;;;18524:63;;18604:17;18596:51;18604:17;18596:51;18524:63;18604:17;18596:51;;;;;;;;;;;;;;;;;;;;;18656:16;18707:3;18695:10;;18675:17;:30;;;;:::i;:::-;:35;;;;:::i;:::-;18727:14;;18719:42;;18656:54;;-1:-1:-1;;;;;;18727:14:19;;18719:42;;;;;18656:54;;18727:14;18719:42;18727:14;18719:42;18656:54;18727:14;18719:42;;;;;;;;;;;;;;;;;;;;;18770:56;18822:3;18806:14;;18786:17;:34;;;;:::i;18770:56::-;18839:6;18835:200;18855:13;:20;18851:24;;18835:200;;;18892:11;18955:3;18926:13;18940:1;18926:16;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;;18906:17;:47;;;;:::i;:::-;:52;;;;:::i;:::-;18892:66;;18977:13;18991:1;18977:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;:30;18969:56;;-1:-1:-1;;;;;18977:30:19;;;;18969:56;;;;;19018:6;;18969:56;18977:16;18969:56;19018:6;18977:30;18969:56;;;;;;;;;;;;;;;;;;;;;18881:154;18877:3;;;;;:::i;:::-;;;;18835:200;;;;18360:680;;;;18314:726;:::o;7163:127:6:-;7228:4;7252:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7252:16:6;:30;;;7163:127::o;11047:174::-;11122:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11122:29:6;-1:-1:-1;;;;;11122:29:6;;;;;;;;:24;;11176:23;11122:24;11176:14;:23::i;:::-;-1:-1:-1;;;;;11167:46:6;;;;;;;;;;;11047:174;;:::o;7457:355::-;7550:4;7575:16;7583:7;7575;:16::i;:::-;7567:73;;;;-1:-1:-1;;;7567:73:6;;18304:2:20;7567:73:6;;;18286:21:20;18343:2;18323:18;;;18316:30;18382:34;18362:18;;;18355:62;-1:-1:-1;;;18433:18:20;;;18426:42;18485:19;;7567:73:6;18102:408:20;7567:73:6;7651:13;7667:23;7682:7;7667:14;:23::i;:::-;7651:39;;7720:5;-1:-1:-1;;;;;7709:16:6;:7;-1:-1:-1;;;;;7709:16:6;;:51;;;;7753:7;-1:-1:-1;;;;;7729:31:6;:20;7741:7;7729:11;:20::i;:::-;-1:-1:-1;;;;;7729:31:6;;7709:51;:94;;;-1:-1:-1;;;;;;4703:25:6;;;4679:4;4703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7764:39;4582:164;10385:544;10510:4;-1:-1:-1;;;;;10483:31:6;:23;10498:7;10483:14;:23::i;:::-;-1:-1:-1;;;;;10483:31:6;;10475:85;;;;-1:-1:-1;;;10475:85:6;;23667:2:20;10475:85:6;;;23649:21:20;23706:2;23686:18;;;23679:30;23745:34;23725:18;;;23718:62;-1:-1:-1;;;23796:18:20;;;23789:39;23845:19;;10475:85:6;23465:405:20;10475:85:6;-1:-1:-1;;;;;10579:16:6;;10571:65;;;;-1:-1:-1;;;10571:65:6;;16701:2:20;10571:65:6;;;16683:21:20;16740:2;16720:18;;;16713:30;16779:34;16759:18;;;16752:62;-1:-1:-1;;;16830:18:20;;;16823:34;16874:19;;10571:65:6;16499:400:20;10571:65:6;10649:39;10670:4;10676:2;10680:7;10649:20;:39::i;:::-;10753:29;10770:1;10774:7;10753:8;:29::i;:::-;-1:-1:-1;;;;;10795:15:6;;;;;;:9;:15;;;;;:20;;10814:1;;10795:15;:20;;10814:1;;10795:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10826:13:6;;;;;;:9;:13;;;;;:18;;10843:1;;10826:13;:18;;10843:1;;10826:18;:::i;:::-;;;;-1:-1:-1;;10855:16:6;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10855:21:6;-1:-1:-1;;;;;10855:21:6;;;;;;;;;10894:27;;10855:16;;10894:27;;;;;;;10385:544;;;:::o;4658:232:0:-;4339:7;4366:12;;;;;;;;;;:22;;;4751:41;;4759:18;681:10:3;3945:139:0;:::i;4751:41::-;4743:101;;;;-1:-1:-1;;;4743:101:0;;13440:2:20;4743:101:0;;;13422:21:20;13479:2;13459:18;;;13452:30;13518:34;13498:18;;;13491:62;-1:-1:-1;;;13569:18:20;;;13562:45;13624:19;;4743:101:0;13238:411:20;5877:218:0;-1:-1:-1;;;;;5973:23:0;;681:10:3;5973:23:0;5965:83;;;;-1:-1:-1;;;5965:83:0;;27401:2:20;5965:83:0;;;27383:21:20;27440:2;27420:18;;;27413:30;27479:34;27459:18;;;27452:62;-1:-1:-1;;;27530:18:20;;;27523:45;27585:19;;5965:83:0;27199:411:20;5965:83:0;6061:26;6073:4;6079:7;6061:11;:26::i;6949:158:11:-;7022:4;7046:53;7054:3;-1:-1:-1;;;;;7074:23:11;;7046:7;:53::i;7907:158::-;7981:7;8032:22;8036:3;8048:5;8032:3;:22::i;2991:169:1:-;3079:31;3096:4;3102:7;3079:16;:31::i;6578:272:6:-;6692:28;6702:4;6708:2;6712:7;6692:9;:28::i;:::-;6739:48;6762:4;6768:2;6772:7;6781:5;6739:22;:48::i;:::-;6731:111;;;;-1:-1:-1;;;6731:111:6;;;;;;;:::i;405:679:10:-;478:13;512:16;520:7;512;:16::i;:::-;504:78;;;;-1:-1:-1;;;504:78:10;;22408:2:20;504:78:10;;;22390:21:20;22447:2;22427:18;;;22420:30;22486:34;22466:18;;;22459:62;-1:-1:-1;;;22537:18:20;;;22530:47;22594:19;;504:78:10;22206:413:20;504:78:10;595:23;621:19;;;:10;:19;;;;;595:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651:18;672:10;:8;:10::i;:::-;651:31;;764:4;758:18;780:1;758:23;754:72;;;-1:-1:-1;805:9:10;405:679;-1:-1:-1;;405:679:10:o;754:72::-;930:23;;:27;926:108;;1005:4;1011:9;988:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;974:48;;;;405:679;;;:::o;926:108::-;1053:23;1068:7;1053:14;:23::i;7446:117:11:-;7509:7;7536:19;7544:3;4203:18;;4120:109;5135:235:0;4339:7;4366:12;;;;;;;;;;:22;;;5229:41;;5237:18;4273:123;5229:41;5221:102;;;;-1:-1:-1;;;5221:102:0;;18717:2:20;5221:102:0;;;18699:21:20;18756:2;18736:18;;;18729:30;18795:34;18775:18;;;18768:62;-1:-1:-1;;;18846:18:20;;;18839:46;18902:19;;5221:102:0;18515:412:20;7125:229:0;7200:22;7208:4;7214:7;7200;:22::i;:::-;7195:152;;7239:6;:12;;;;;;;;;;;-1:-1:-1;;;;;7239:29:0;;;;;;;;;:36;;-1:-1:-1;;7239:36:0;7271:4;7239:36;;;7322:12;681:10:3;;601:98;7322:12:0;-1:-1:-1;;;;;7295:40:0;7313:7;-1:-1:-1;;;;;7295:40:0;7307:4;7295:40;;;;;;;;;;7125:229;;:::o;1685:414:11:-;1748:4;4002:19;;;:12;;;:19;;;;;;1765:327;;-1:-1:-1;1808:23:11;;;;;;;;:11;:23;;;;;;;;;;;;;1991:18;;1969:19;;;:12;;;:19;;;;;;:40;;;;2024:11;;1765:327;-1:-1:-1;2075:5:11;2068:12;;1524:292:6;1626:4;-1:-1:-1;;;;;;1650:40:6;;-1:-1:-1;;;1650:40:6;;:105;;-1:-1:-1;;;;;;;1707:48:6;;-1:-1:-1;;;1707:48:6;1650:105;:158;;;;1772:36;1796:11;1772:23;:36::i;11788:239:19:-;11940:7;11924:13;1678:10:8;:17;;1590:113;11924:13:19;:23;11920:49;;;11949:20;11961:7;11949:11;:20::i;:::-;11976:45;12003:4;12009:2;12013:7;11976:26;:45::i;7362:230:0:-;7437:22;7445:4;7451:7;7437;:22::i;:::-;7433:152;;;7508:5;7476:12;;;;;;;;;;;-1:-1:-1;;;;;7476:29:0;;;;;;;;;;:37;;-1:-1:-1;;7476:37:0;;;7533:40;681:10:3;;7476:12:0;;7533:40;;7508:5;7533:40;7362:230;;:::o;2275:1544:11:-;2341:4;2480:19;;;:12;;;:19;;;;;;2516:15;;2512:1300;;2878:21;2902:14;2915:1;2902:10;:14;:::i;:::-;2951:18;;2878:38;;-1:-1:-1;2931:17:11;;2951:22;;2972:1;;2951:22;:::i;:::-;2931:42;;3218:17;3238:3;:11;;3250:9;3238:22;;;;;;;;:::i;:::-;;;;;;;;;3218:42;;3384:9;3355:3;:11;;3367:13;3355:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;3487:17;:13;3503:1;3487:17;:::i;:::-;3461:23;;;;:12;;;:23;;;;;:43;3613:17;;3461:3;;3613:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3708:3;:12;;:19;3721:5;3708:19;;;;;;;;;;;3701:26;;;3751:4;3744:11;;;;;;;;2512:1300;3795:5;3788:12;;;;;4573:204;4668:18;;4640:7;;4668:26;-1:-1:-1;4660:73:11;;;;-1:-1:-1;;;4660:73:11;;12612:2:20;4660:73:11;;;12594:21:20;12651:2;12631:18;;;12624:30;12690:34;12670:18;;;12663:62;-1:-1:-1;;;12741:18:20;;;12734:32;12783:19;;4660:73:11;12410:398:20;4660:73:11;4751:3;:11;;4763:5;4751:18;;;;;;;;:::i;:::-;;;;;;;;;4744:25;;4573:204;;;;:::o;11786:843:6:-;11907:4;-1:-1:-1;;;;;11933:13:6;;1110:20:2;1149:8;11929:693:6;;11969:72;;-1:-1:-1;;;11969:72:6;;-1:-1:-1;;;;;11969:36:6;;;;;:72;;681:10:3;;12020:4:6;;12026:7;;12035:5;;11969:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11969:72:6;;;;;;;;-1:-1:-1;;11969:72:6;;;;;;;;;;;;:::i;:::-;;;11965:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12215:13:6;;12211:341;;12258:60;;-1:-1:-1;;;12258:60:6;;;;;;;:::i;12211:341::-;12502:6;12496:13;12487:6;12483:2;12479:15;12472:38;11965:602;-1:-1:-1;;;;;;12092:55:6;-1:-1:-1;;;12092:55:6;;-1:-1:-1;12085:62:6;;11929:693;-1:-1:-1;12606:4:6;11786:843;;;;;;:::o;8196:110:19:-;8256:13;8287;8280:20;;;;;:::i;2800:360:6:-;2873:13;2907:16;2915:7;2907;:16::i;:::-;2899:76;;;;-1:-1:-1;;;2899:76:6;;24077:2:20;2899:76:6;;;24059:21:20;24116:2;24096:18;;;24089:30;24155:34;24135:18;;;24128:62;-1:-1:-1;;;24206:18:20;;;24199:45;24261:19;;2899:76:6;23875:411:20;2899:76:6;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3064:1;3046:7;3040:21;:25;:112;;;;;;;;;;;;;;;;;3105:7;3114:18;:7;:16;:18::i;:::-;3088:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3033:119;2800:360;-1:-1:-1;;;2800:360:6:o;830:227:1:-;915:4;-1:-1:-1;;;;;;939:57:1;;-1:-1:-1;;;939:57:1;;:110;;;1013:36;1037:11;1013:23;:36::i;13776:807:19:-;13827:13;13843:29;13864:7;13843:20;:29::i;:::-;13827:45;-1:-1:-1;13882:9:19;;13879:699;;13922:5;13901:17;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;13940:19:19;;-1:-1:-1;13940:37:19;13960:16;13968:7;13960;:16::i;:::-;-1:-1:-1;;;;;13940:37:19;;;;;;;;;;;;-1:-1:-1;13940:37:19;;;;13936:587;;14015:16;;;14029:1;14015:16;;;;;;;;13991:21;;14015:16;;;;;;;;;;-1:-1:-1;14015:16:19;13991:40;;14050:6;14046:421;14066:11;:18;14062:22;;14046:421;;;14125:11;:18;14105:11;;14119:24;;:5;:24;:::i;:::-;14105:38;;14168:6;;;;;;;;;-1:-1:-1;;;;;14168:6:19;-1:-1:-1;;;;;14168:11:19;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14158:4;14163:1;14158:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;14158:23:19;;;-1:-1:-1;;;;;14158:23:19;;;;;14214:11;14226:1;14214:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:27;14196:7;;-1:-1:-1;;;;;14214:27:19;;;;14196:4;;14214:27;;14196:7;;;;;;:::i;:::-;-1:-1:-1;;;;;14196:46:19;;;:7;;;;;;;;;:46;14257:6;;;:57;14322:6;14257;14364:4;14385:16;14393:7;14385;:16::i;:::-;14418:20;:15;14436:2;14418:20;:::i;:::-;14257:196;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14090:377;14086:3;;;;;:::i;:::-;;;;14046:421;;;;13978:498;13936:587;;;14491:22;14507:5;14491:15;:22::i;:::-;14557:13;;14531:23;;;;:14;:23;;;;;:39;13820:763;13776:807;:::o;2626:555:8:-;-1:-1:-1;;;;;2798:18:8;;2794:187;;2833:40;2865:7;4008:10;:17;;3981:24;;;;:15;:24;;;;;:44;;;4036:24;;;;;;;;;;;;3904:164;2833:40;2794:187;;;2903:2;-1:-1:-1;;;;;2895:10:8;:4;-1:-1:-1;;;;;2895:10:8;;2891:90;;2922:47;2955:4;2961:7;2922:32;:47::i;:::-;-1:-1:-1;;;;;2995:16:8;;2991:183;;3028:45;3065:7;3028:36;:45::i;2991:183::-;3101:4;-1:-1:-1;;;;;3095:10:8;:2;-1:-1:-1;;;;;3095:10:8;;3091:83;;3122:40;3150:2;3154:7;3122:27;:40::i;3636:217:0:-;3721:4;-1:-1:-1;;;;;;3745:47:0;;-1:-1:-1;;;3745:47:0;;:100;;-1:-1:-1;;;;;;;;;;898:40:5;;;3809:36:0;789:157:5;4695:988:8;4961:22;5011:1;4986:22;5003:4;4986:16;:22::i;:::-;:26;;;;:::i;:::-;5023:18;5044:26;;;:17;:26;;;;;;4961:51;;-1:-1:-1;5177:28:8;;;5173:328;;-1:-1:-1;;;;;5244:18:8;;5222:19;5244:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5295:30;;;;;;:44;;;5412:30;;:17;:30;;;;;:43;;;5173:328;-1:-1:-1;5597:26:8;;;;:17;:26;;;;;;;;5590:33;;;-1:-1:-1;;;;;5641:18:8;;;;;:12;:18;;;;;:34;;;;;;;5634:41;4695:988::o;5978:1079::-;6256:10;:17;6231:22;;6256:21;;6276:1;;6256:21;:::i;:::-;6288:18;6309:24;;;:15;:24;;;;;;6682:10;:26;;6231:46;;-1:-1:-1;6309:24:8;;6231:46;;6682:26;;;;;;:::i;:::-;;;;;;;;;6660:48;;6746:11;6721:10;6732;6721:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6826:28;;;:15;:28;;;;;;;:41;;;6998:24;;;;;6991:31;7033:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6049:1008;;;5978:1079;:::o;3482:221::-;3567:14;3584:20;3601:2;3584:16;:20::i;:::-;-1:-1:-1;;;;;3615:16:8;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3660:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3482:221:8:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:20;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:20;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:221::-;693:5;746:3;739:4;731:6;727:17;723:27;713:55;;764:1;761;754:12;713:55;786:79;861:3;852:6;839:20;832:4;824:6;820:17;786:79;:::i;876:247::-;935:6;988:2;976:9;967:7;963:23;959:32;956:52;;;1004:1;1001;994:12;956:52;1043:9;1030:23;1062:31;1087:5;1062:31;:::i;1128:251::-;1198:6;1251:2;1239:9;1230:7;1226:23;1222:32;1219:52;;;1267:1;1264;1257:12;1219:52;1299:9;1293:16;1318:31;1343:5;1318:31;:::i;1384:388::-;1452:6;1460;1513:2;1501:9;1492:7;1488:23;1484:32;1481:52;;;1529:1;1526;1519:12;1481:52;1568:9;1555:23;1587:31;1612:5;1587:31;:::i;:::-;1637:5;-1:-1:-1;1694:2:20;1679:18;;1666:32;1707:33;1666:32;1707:33;:::i;:::-;1759:7;1749:17;;;1384:388;;;;;:::o;1777:456::-;1854:6;1862;1870;1923:2;1911:9;1902:7;1898:23;1894:32;1891:52;;;1939:1;1936;1929:12;1891:52;1978:9;1965:23;1997:31;2022:5;1997:31;:::i;:::-;2047:5;-1:-1:-1;2104:2:20;2089:18;;2076:32;2117:33;2076:32;2117:33;:::i;:::-;1777:456;;2169:7;;-1:-1:-1;;;2223:2:20;2208:18;;;;2195:32;;1777:456::o;2238:794::-;2333:6;2341;2349;2357;2410:3;2398:9;2389:7;2385:23;2381:33;2378:53;;;2427:1;2424;2417:12;2378:53;2466:9;2453:23;2485:31;2510:5;2485:31;:::i;:::-;2535:5;-1:-1:-1;2592:2:20;2577:18;;2564:32;2605:33;2564:32;2605:33;:::i;:::-;2657:7;-1:-1:-1;2711:2:20;2696:18;;2683:32;;-1:-1:-1;2766:2:20;2751:18;;2738:32;2793:18;2782:30;;2779:50;;;2825:1;2822;2815:12;2779:50;2848:22;;2901:4;2893:13;;2889:27;-1:-1:-1;2879:55:20;;2930:1;2927;2920:12;2879:55;2953:73;3018:7;3013:2;3000:16;2995:2;2991;2987:11;2953:73;:::i;:::-;2943:83;;;2238:794;;;;;;;:::o;3037:382::-;3102:6;3110;3163:2;3151:9;3142:7;3138:23;3134:32;3131:52;;;3179:1;3176;3169:12;3131:52;3218:9;3205:23;3237:31;3262:5;3237:31;:::i;:::-;3287:5;-1:-1:-1;3344:2:20;3329:18;;3316:32;3357:30;3316:32;3357:30;:::i;3424:315::-;3492:6;3500;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3608:9;3595:23;3627:31;3652:5;3627:31;:::i;:::-;3677:5;3729:2;3714:18;;;;3701:32;;-1:-1:-1;;;3424:315:20:o;3744:615::-;3830:6;3838;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3947:9;3934:23;3976:18;4017:2;4009:6;4006:14;4003:34;;;4033:1;4030;4023:12;4003:34;4071:6;4060:9;4056:22;4046:32;;4116:7;4109:4;4105:2;4101:13;4097:27;4087:55;;4138:1;4135;4128:12;4087:55;4178:2;4165:16;4204:2;4196:6;4193:14;4190:34;;;4220:1;4217;4210:12;4190:34;4273:7;4268:2;4258:6;4255:1;4251:14;4247:2;4243:23;4239:32;4236:45;4233:65;;;4294:1;4291;4284:12;4233:65;4325:2;4317:11;;;;;4347:6;;-1:-1:-1;3744:615:20;;-1:-1:-1;;;;3744:615:20:o;4364:241::-;4420:6;4473:2;4461:9;4452:7;4448:23;4444:32;4441:52;;;4489:1;4486;4479:12;4441:52;4528:9;4515:23;4547:28;4569:5;4547:28;:::i;4610:245::-;4677:6;4730:2;4718:9;4709:7;4705:23;4701:32;4698:52;;;4746:1;4743;4736:12;4698:52;4778:9;4772:16;4797:28;4819:5;4797:28;:::i;4860:180::-;4919:6;4972:2;4960:9;4951:7;4947:23;4943:32;4940:52;;;4988:1;4985;4978:12;4940:52;-1:-1:-1;5011:23:20;;4860:180;-1:-1:-1;4860:180:20:o;5045:315::-;5113:6;5121;5174:2;5162:9;5153:7;5149:23;5145:32;5142:52;;;5190:1;5187;5180:12;5142:52;5226:9;5213:23;5203:33;;5286:2;5275:9;5271:18;5258:32;5299:31;5324:5;5299:31;:::i;5365:248::-;5433:6;5441;5494:2;5482:9;5473:7;5469:23;5465:32;5462:52;;;5510:1;5507;5500:12;5462:52;-1:-1:-1;;5533:23:20;;;5603:2;5588:18;;;5575:32;;-1:-1:-1;5365:248:20:o;5618:245::-;5676:6;5729:2;5717:9;5708:7;5704:23;5700:32;5697:52;;;5745:1;5742;5735:12;5697:52;5784:9;5771:23;5803:30;5827:5;5803:30;:::i;5868:249::-;5937:6;5990:2;5978:9;5969:7;5965:23;5961:32;5958:52;;;6006:1;6003;5996:12;5958:52;6038:9;6032:16;6057:30;6081:5;6057:30;:::i;6389:592::-;6460:6;6468;6521:2;6509:9;6500:7;6496:23;6492:32;6489:52;;;6537:1;6534;6527:12;6489:52;6577:9;6564:23;6606:18;6647:2;6639:6;6636:14;6633:34;;;6663:1;6660;6653:12;6633:34;6701:6;6690:9;6686:22;6676:32;;6746:7;6739:4;6735:2;6731:13;6727:27;6717:55;;6768:1;6765;6758:12;6717:55;6808:2;6795:16;6834:2;6826:6;6823:14;6820:34;;;6850:1;6847;6840:12;6820:34;6895:7;6890:2;6881:6;6877:2;6873:15;6869:24;6866:37;6863:57;;;6916:1;6913;6906:12;6986:322;7055:6;7108:2;7096:9;7087:7;7083:23;7079:32;7076:52;;;7124:1;7121;7114:12;7076:52;7164:9;7151:23;7197:18;7189:6;7186:30;7183:50;;;7229:1;7226;7219:12;7183:50;7252;7294:7;7285:6;7274:9;7270:22;7252:50;:::i;7498:184::-;7568:6;7621:2;7609:9;7600:7;7596:23;7592:32;7589:52;;;7637:1;7634;7627:12;7589:52;-1:-1:-1;7660:16:20;;7498:184;-1:-1:-1;7498:184:20:o;7687:390::-;7765:6;7773;7826:2;7814:9;7805:7;7801:23;7797:32;7794:52;;;7842:1;7839;7832:12;7794:52;7878:9;7865:23;7855:33;;7939:2;7928:9;7924:18;7911:32;7966:18;7958:6;7955:30;7952:50;;;7998:1;7995;7988:12;7952:50;8021;8063:7;8054:6;8043:9;8039:22;8021:50;:::i;:::-;8011:60;;;7687:390;;;;;:::o;8082:257::-;8123:3;8161:5;8155:12;8188:6;8183:3;8176:19;8204:63;8260:6;8253:4;8248:3;8244:14;8237:4;8230:5;8226:16;8204:63;:::i;:::-;8321:2;8300:15;-1:-1:-1;;8296:29:20;8287:39;;;;8328:4;8283:50;;8082:257;-1:-1:-1;;8082:257:20:o;8344:470::-;8523:3;8561:6;8555:13;8577:53;8623:6;8618:3;8611:4;8603:6;8599:17;8577:53;:::i;:::-;8693:13;;8652:16;;;;8715:57;8693:13;8652:16;8749:4;8737:17;;8715:57;:::i;:::-;8788:20;;8344:470;-1:-1:-1;;;;8344:470:20:o;8819:443::-;9051:3;9089:6;9083:13;9105:53;9151:6;9146:3;9139:4;9131:6;9127:17;9105:53;:::i;:::-;-1:-1:-1;;;9180:16:20;;9205:22;;;-1:-1:-1;9254:1:20;9243:13;;8819:443;-1:-1:-1;8819:443:20:o;9475:488::-;-1:-1:-1;;;;;9744:15:20;;;9726:34;;9796:15;;9791:2;9776:18;;9769:43;9843:2;9828:18;;9821:34;;;9891:3;9886:2;9871:18;;9864:31;;;9669:4;;9912:45;;9937:19;;9929:6;9912:45;:::i;:::-;9904:53;9475:488;-1:-1:-1;;;;;;9475:488:20:o;10848:908::-;11082:4;11130:3;11119:9;11115:19;11161:6;11150:9;11143:25;11187:2;11225:3;11220:2;11209:9;11205:18;11198:31;11249:6;11284;11278:13;11315:6;11307;11300:22;11353:3;11342:9;11338:19;11331:26;;11392:2;11384:6;11380:15;11366:29;;11413:1;11423:195;11437:6;11434:1;11431:13;11423:195;;;11502:13;;-1:-1:-1;;;;;11498:39:20;11486:52;;11593:15;;;;11558:12;;;;11534:1;11452:9;11423:195;;;-1:-1:-1;;;;;;;11674:32:20;;;;11669:2;11654:18;;11647:60;-1:-1:-1;;;11738:2:20;11723:18;11716:34;11635:3;10848:908;-1:-1:-1;;10848:908:20:o;11761:219::-;11910:2;11899:9;11892:21;11873:4;11930:44;11970:2;11959:9;11955:18;11947:6;11930:44;:::i;14066:414::-;14268:2;14250:21;;;14307:2;14287:18;;;14280:30;14346:34;14341:2;14326:18;;14319:62;-1:-1:-1;;;14412:2:20;14397:18;;14390:48;14470:3;14455:19;;14066:414::o;15260:403::-;15462:2;15444:21;;;15501:2;15481:18;;;15474:30;15540:34;15535:2;15520:18;;15513:62;-1:-1:-1;;;15606:2:20;15591:18;;15584:37;15653:3;15638:19;;15260:403::o;16094:400::-;16296:2;16278:21;;;16335:2;16315:18;;;16308:30;16374:34;16369:2;16354:18;;16347:62;-1:-1:-1;;;16440:2:20;16425:18;;16418:34;16484:3;16469:19;;16094:400::o;17258:418::-;17460:2;17442:21;;;17499:2;17479:18;;;17472:30;-1:-1:-1;;;;;;;;;;;17533:2:20;17518:18;;17511:62;-1:-1:-1;;;17604:2:20;17589:18;;17582:52;17666:3;17651:19;;17258:418::o;19357:421::-;19559:2;19541:21;;;19598:2;19578:18;;;19571:30;-1:-1:-1;;;;;;;;;;;19632:2:20;19617:18;;19610:62;19708:27;19703:2;19688:18;;19681:55;19768:3;19753:19;;19357:421::o;21019:407::-;21221:2;21203:21;;;21260:2;21240:18;;;21233:30;21299:34;21294:2;21279:18;;21272:62;-1:-1:-1;;;21365:2:20;21350:18;;21343:41;21416:3;21401:19;;21019:407::o;21431:409::-;21633:2;21615:21;;;21672:2;21652:18;;;21645:30;21711:34;21706:2;21691:18;;21684:62;-1:-1:-1;;;21777:2:20;21762:18;;21755:43;21830:3;21815:19;;21431:409::o;25945:413::-;26147:2;26129:21;;;26186:2;26166:18;;;26159:30;26225:34;26220:2;26205:18;;26198:62;-1:-1:-1;;;26291:2:20;26276:18;;26269:47;26348:3;26333:19;;25945:413::o;26776:418::-;26978:2;26960:21;;;27017:2;26997:18;;;26990:30;-1:-1:-1;;;;;;;;;;;27051:2:20;27036:18;;27029:62;-1:-1:-1;;;27122:2:20;27107:18;;27100:52;27184:3;27169:19;;26776:418::o;28219:128::-;28259:3;28290:1;28286:6;28283:1;28280:13;28277:39;;;28296:18;;:::i;:::-;-1:-1:-1;28332:9:20;;28219:128::o;28352:120::-;28392:1;28418;28408:35;;28423:18;;:::i;:::-;-1:-1:-1;28457:9:20;;28352:120::o;28477:168::-;28517:7;28583:1;28579;28575:6;28571:14;28568:1;28565:21;28560:1;28553:9;28546:17;28542:45;28539:71;;;28590:18;;:::i;:::-;-1:-1:-1;28630:9:20;;28477:168::o;28650:125::-;28690:4;28718:1;28715;28712:8;28709:34;;;28723:18;;:::i;:::-;-1:-1:-1;28760:9:20;;28650:125::o;28780:258::-;28852:1;28862:113;28876:6;28873:1;28870:13;28862:113;;;28952:11;;;28946:18;28933:11;;;28926:39;28898:2;28891:10;28862:113;;;28993:6;28990:1;28987:13;28984:48;;;-1:-1:-1;;29028:1:20;29010:16;;29003:27;28780:258::o;29043:380::-;29122:1;29118:12;;;;29165;;;29186:61;;29240:4;29232:6;29228:17;29218:27;;29186:61;29293:2;29285:6;29282:14;29262:18;29259:38;29256:161;;;29339:10;29334:3;29330:20;29327:1;29320:31;29374:4;29371:1;29364:15;29402:4;29399:1;29392:15;29256:161;;29043:380;;;:::o;29428:135::-;29467:3;-1:-1:-1;;29488:17:20;;29485:43;;;29508:18;;:::i;:::-;-1:-1:-1;29555:1:20;29544:13;;29428:135::o;29568:112::-;29600:1;29626;29616:35;;29631:18;;:::i;:::-;-1:-1:-1;29665:9:20;;29568:112::o;29685:127::-;29746:10;29741:3;29737:20;29734:1;29727:31;29777:4;29774:1;29767:15;29801:4;29798:1;29791:15;29817:127;29878:10;29873:3;29869:20;29866:1;29859:31;29909:4;29906:1;29899:15;29933:4;29930:1;29923:15;29949:127;30010:10;30005:3;30001:20;29998:1;29991:31;30041:4;30038:1;30031:15;30065:4;30062:1;30055:15;30081:127;30142:10;30137:3;30133:20;30130:1;30123:31;30173:4;30170:1;30163:15;30197:4;30194:1;30187:15;30213:127;30274:10;30269:3;30265:20;30262:1;30255:31;30305:4;30302:1;30295:15;30329:4;30326:1;30319:15;30345:131;-1:-1:-1;;;;;30420:31:20;;30410:42;;30400:70;;30466:1;30463;30456:12;30481:118;30567:5;30560:13;30553:21;30546:5;30543:32;30533:60;;30589:1;30586;30579:12;30604:131;-1:-1:-1;;;;;;30678:32:20;;30668:43;;30658:71;;30725:1;30722;30715:12

Swarm Source

ipfs://6c1ef8802cd7afe9f909e924711a6715e6b14122eacdf8aa18e74521b4de830e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.