Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
0 LBK
Holders
639
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LEGALBLOCK
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-10-31 */ pragma solidity ^0.4.24; /** * @title ERC20Basic * dev Simpler version of ERC20 interface * See https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title SafeMath * dev Math operations with safety checks that throw on error */ library SafeMath { /** * dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * @title Basic token * dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * dev Transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0), "Recipient address is zero address(0). Check the address again."); require(_value <= balances[msg.sender], "The balance of account is insufficient."); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } } /** * @title ERC20 interface * dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @title Standard ERC20 token * * dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/issues/20 * Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom( address _from, address _to, uint256 _value ) public returns (bool) { require(_to != address(0), "Recipient address is zero address(0). Check the address again."); require(_value <= balances[_from], "The balance of account is insufficient."); require(_value <= allowed[_from][msg.sender], "Insufficient tokens approved from account owner."); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance( address _owner, address _spender ) public view returns (uint256) { return allowed[_owner][_spender]; } /** * dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval( address _spender, uint256 _addedValue ) public returns (bool) { allowed[msg.sender][_spender] = ( allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval( address _spender, uint256 _subtractedValue ) public returns (bool) { uint256 oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * Utility library of inline functions on addresses */ library AddressUtils { /** * Returns whether the target address is a contract * dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until after the constructor finishes. * @param addr address to check * @return whether the target address is a contract */ function isContract(address addr) internal view returns (bool) { uint256 size; // XXX Currently there is no better way to check if there is a contract in an address // than to check the size of the code at that address. // See https://ethereum.stackexchange.com/a/14016/36603 // for more details about how this works. // TODO Check this again before the Serenity release, because all addresses will be // contracts then. // solium-disable-next-line security/no-inline-assembly assembly { size := extcodesize(addr) } return size > 0; } } /** * @title MultiOwnable * dev */ contract MultiOwnable { using SafeMath for uint256; address public root; // 혹시 몰라 준비해둔 superOwner 의 백업. 하드웨어 월렛 주소로 세팅할 예정. address public superOwner; mapping (address => bool) public owners; address[] public ownerList; // for changeRootByDAO mapping(address => address) public candidateRootMap; event ChangedRoot(address newRoot); event ChangedSuperOwner(address newSuperOwner); event AddedNewOwner(address newOwner); event DeletedOwner(address deletedOwner); constructor() public { root = msg.sender; superOwner = msg.sender; owners[root] = true; ownerList.push(msg.sender); } modifier onlyRoot() { require(msg.sender == root, "Root privilege is required."); _; } modifier onlySuperOwner() { require(msg.sender == superOwner, "SuperOwner priviledge is required."); _; } modifier onlyOwner() { require(owners[msg.sender], "Owner priviledge is required."); _; } /** * dev root 교체 (root 는 root 와 superOwner 를 교체할 수 있는 권리가 있다.) * dev 기존 루트가 관리자에서 지워지지 않고, 새 루트가 자동으로 관리자에 등록되지 않음을 유의! */ function changeRoot(address newRoot) onlyRoot public returns (bool) { require(newRoot != address(0), "This address to be set is zero address(0). Check the input address."); root = newRoot; emit ChangedRoot(newRoot); return true; } /** * dev superOwner 교체 (root 는 root 와 superOwner 를 교체할 수 있는 권리가 있다.) * dev 기존 superOwner 가 관리자에서 지워지지 않고, 새 superOwner 가 자동으로 관리자에 등록되지 않음을 유의! */ function changeSuperOwner(address newSuperOwner) onlyRoot public returns (bool) { require(newSuperOwner != address(0), "This address to be set is zero address(0). Check the input address."); superOwner = newSuperOwner; emit ChangedSuperOwner(newSuperOwner); return true; } /** * dev owner 들의 1/2 초과가 합의하면 root 를 교체할 수 있다. */ function changeRootByDAO(address newRoot) onlyOwner public returns (bool) { require(newRoot != address(0), "This address to be set is zero address(0). Check the input address."); require(newRoot != candidateRootMap[msg.sender], "You have already voted for this account."); candidateRootMap[msg.sender] = newRoot; uint8 votingNumForRoot = 0; uint8 i = 0; for (i = 0; i < ownerList.length; i++) { if (candidateRootMap[ownerList[i]] == newRoot) votingNumForRoot++; } if (votingNumForRoot > ownerList.length / 2) { // 과반수 이상이면 DAO 성립 => root 교체 root = newRoot; // 초기화 for (i = 0; i < ownerList.length; i++) { delete candidateRootMap[ownerList[i]]; } emit ChangedRoot(newRoot); } return true; } function newOwner(address owner) onlySuperOwner public returns (bool) { require(owner != address(0), "This address to be set is zero address(0). Check the input address."); require(!owners[owner], "This address is already registered."); owners[owner] = true; ownerList.push(owner); emit AddedNewOwner(owner); return true; } function deleteOwner(address owner) onlySuperOwner public returns (bool) { require(owners[owner], "This input address is not a super owner."); delete owners[owner]; for (uint256 i = 0; i < ownerList.length; i++) { if (ownerList[i] == owner) { ownerList[i] = ownerList[ownerList.length.sub(1)]; ownerList.length = ownerList.length.sub(1); break; } } emit DeletedOwner(owner); return true; } } /** * @title Lockable token */ contract LockableToken is StandardToken, MultiOwnable { bool public locked = true; uint256 public constant LOCK_MAX = uint256(-1); /** * dev 락 상태에서도 거래 가능한 언락 계정 */ mapping(address => bool) public unlockAddrs; /** * dev 계정 별로 lock value 만큼 잔고가 잠김 * dev - 값이 0 일 때 : 잔고가 0 이어도 되므로 제한이 없는 것임. * dev - 값이 LOCK_MAX 일 때 : 잔고가 uint256 의 최대값이므로 아예 잠긴 것임. */ mapping(address => uint256) public lockValues; event Locked(bool locked, string note); event LockedTo(address indexed addr, bool locked, string note); event SetLockValue(address indexed addr, uint256 value, string note); constructor() public { unlockTo(msg.sender, ""); } modifier checkUnlock (address addr, uint256 value) { require(!locked || unlockAddrs[addr], "The account is currently locked."); require(balances[addr].sub(value) >= lockValues[addr], "Transferable limit exceeded. Check the status of the lock value."); _; } function lock(string note) onlyOwner public { locked = true; emit Locked(locked, note); } function unlock(string note) onlyOwner public { locked = false; emit Locked(locked, note); } function lockTo(address addr, string note) onlyOwner public { setLockValue(addr, LOCK_MAX, note); unlockAddrs[addr] = false; emit LockedTo(addr, true, note); } function unlockTo(address addr, string note) onlyOwner public { if (lockValues[addr] == LOCK_MAX) setLockValue(addr, 0, note); unlockAddrs[addr] = true; emit LockedTo(addr, false, note); } function setLockValue(address addr, uint256 value, string note) onlyOwner public { lockValues[addr] = value; emit SetLockValue(addr, value, note); } /** * dev 이체 가능 금액을 조회한다. */ function getMyUnlockValue() public view returns (uint256) { address addr = msg.sender; if ((!locked || unlockAddrs[addr]) && balances[addr] > lockValues[addr]) return balances[addr].sub(lockValues[addr]); else return 0; } function transfer(address to, uint256 value) checkUnlock(msg.sender, value) public returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) checkUnlock(from, value) public returns (bool) { return super.transferFrom(from, to, value); } } /** * @title DelayLockableToken * dev 보안 차원에서 본인 계좌 잔고에 lock 을 걸 수 있다. 잔고 제한 기준을 낮추면 적용되기까지 12시간을 기다려야 한다. */ contract DelayLockableToken is LockableToken { mapping(address => uint256) public delayLockValues; mapping(address => uint256) public delayLockBeforeValues; mapping(address => uint256) public delayLockTimes; event SetDelayLockValue(address indexed addr, uint256 value, uint256 time); modifier checkDelayUnlock (address addr, uint256 value) { if (delayLockTimes[msg.sender] <= now) { require (balances[addr].sub(value) >= delayLockValues[addr], "Transferable limit exceeded. Change the balance lock value first and then use it"); } else { require (balances[addr].sub(value) >= delayLockBeforeValues[addr], "Transferable limit exceeded. Please note that the residual lock value has changed and it will take 12 hours to apply."); } _; } /** * dev 자신의 계좌에 잔고 제한을 건다. 더 크게 걸 땐 바로 적용되고, 더 작게 걸 땐 12시간 이후에 변경된다. */ function delayLock(uint256 value) public returns (bool) { require (value <= balances[msg.sender], "Your balance is insufficient."); if (value >= delayLockValues[msg.sender]) delayLockTimes[msg.sender] = now; else { require (delayLockTimes[msg.sender] <= now, "The remaining money in the account cannot be unlocked continuously. You cannot renew until 12 hours after the first run."); delayLockTimes[msg.sender] = now + 12 hours; delayLockBeforeValues[msg.sender] = delayLockValues[msg.sender]; } delayLockValues[msg.sender] = value; emit SetDelayLockValue(msg.sender, value, delayLockTimes[msg.sender]); return true; } /** * dev 자신의 계좌의 잔고 제한을 푼다. */ function delayUnlock() public returns (bool) { return delayLock(0); } /** * dev 이체 가능 금액을 조회한다. */ function getMyUnlockValue() public view returns (uint256) { uint256 myUnlockValue; address addr = msg.sender; if (delayLockTimes[addr] <= now) { myUnlockValue = balances[addr].sub(delayLockValues[addr]); } else { myUnlockValue = balances[addr].sub(delayLockBeforeValues[addr]); } uint256 superUnlockValue = super.getMyUnlockValue(); if (myUnlockValue > superUnlockValue) return superUnlockValue; else return myUnlockValue; } function transfer(address to, uint256 value) checkDelayUnlock(msg.sender, value) public returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) checkDelayUnlock(from, value) public returns (bool) { return super.transferFrom(from, to, value); } } /** * @title LBKBaseToken * dev 트랜잭션 실행 시 메모를 남길 수 있도록 하였음. */ contract LBKBaseToken is DelayLockableToken { event LBKTransfer(address indexed from, address indexed to, uint256 value, string note); event LBKTransferFrom(address indexed owner, address indexed spender, address indexed to, uint256 value, string note); event LBKApproval(address indexed owner, address indexed spender, uint256 value, string note); event LBKMintTo(address indexed controller, address indexed to, uint256 amount, string note); event LBKBurnFrom(address indexed controller, address indexed from, uint256 value, string note); event LBKBurnWhenMoveToMainnet(address indexed controller, address indexed from, uint256 value, string note); event LBKSell(address indexed owner, address indexed spender, address indexed to, uint256 value, string note); event LBKSellByOtherCoin(address indexed owner, address indexed spender, address indexed to, uint256 value, uint256 processIdHash, uint256 userIdHash, string note); event LBKTransferToTeam(address indexed owner, address indexed spender, address indexed to, uint256 value, string note); event LBKTransferToPartner(address indexed owner, address indexed spender, address indexed to, uint256 value, string note); event LBKTransferToEcosystem(address indexed owner, address indexed spender, address indexed to, uint256 value, uint256 processIdHash, uint256 userIdHash, string note); event LBKTransferToBounty(address indexed owner, address indexed spender, address indexed to, uint256 value, uint256 processIdHash, uint256 userIdHash, string note); // ERC20 함수들을 오버라이딩하여 super 로 올라가지 않고 무조건 lbk~ 함수로 지나가게 한다. function transfer(address to, uint256 value) public returns (bool ret) { return lbkTransfer(to, value, ""); } function lbkTransfer(address to, uint256 value, string note) public returns (bool ret) { require(to != address(this), "The receive address is the Contact Address of LEGALBLOCK. You cannot send money to this address."); ret = super.transfer(to, value); emit LBKTransfer(msg.sender, to, value, note); } function transferFrom(address from, address to, uint256 value) public returns (bool) { return lbkTransferFrom(from, to, value, ""); } function lbkTransferFrom(address from, address to, uint256 value, string note) public returns (bool ret) { require(to != address(this), "The receive address is the Contact Address of LEGALBLOCK. You cannot send money to this address."); ret = super.transferFrom(from, to, value); emit LBKTransferFrom(from, msg.sender, to, value, note); } function approve(address spender, uint256 value) public returns (bool) { return lbkApprove(spender, value, ""); } function lbkApprove(address spender, uint256 value, string note) public returns (bool ret) { ret = super.approve(spender, value); emit LBKApproval(msg.sender, spender, value, note); } function increaseApproval(address spender, uint256 addedValue) public returns (bool) { return lbkIncreaseApproval(spender, addedValue, ""); } function lbkIncreaseApproval(address spender, uint256 addedValue, string note) public returns (bool ret) { ret = super.increaseApproval(spender, addedValue); emit LBKApproval(msg.sender, spender, allowed[msg.sender][spender], note); } function decreaseApproval(address spender, uint256 subtractedValue) public returns (bool) { return lbkDecreaseApproval(spender, subtractedValue, ""); } function lbkDecreaseApproval(address spender, uint256 subtractedValue, string note) public returns (bool ret) { ret = super.decreaseApproval(spender, subtractedValue); emit LBKApproval(msg.sender, spender, allowed[msg.sender][spender], note); } /** * dev 신규 화폐 발행. 반드시 이유를 메모로 남겨라. */ function mintTo(address to, uint256 amount) internal returns (bool) { require(to != address(0x0), "This address to be set is zero address(0). Check the input address."); totalSupply_ = totalSupply_.add(amount); balances[to] = balances[to].add(amount); emit Transfer(address(0), to, amount); return true; } function lbkMintTo(address to, uint256 amount, string note) onlySuperOwner public returns (bool ret) { ret = mintTo(to, amount); emit LBKMintTo(msg.sender, to, amount, note); } /** * dev 화폐 소각. 반드시 이유를 메모로 남겨라. */ function burnFrom(address from, uint256 value) internal returns (bool) { require(value <= balances[from], "Your balance is insufficient."); balances[from] = balances[from].sub(value); totalSupply_ = totalSupply_.sub(value); emit Transfer(from, address(0), value); return true; } function lbkBurnFrom(address from, uint256 value, string note) onlyOwner public returns (bool ret) { ret = burnFrom(from, value); emit LBKBurnFrom(msg.sender, from, value, note); } /** * dev 메인넷으로 이동하며 화폐 소각. */ function lbkBurnWhenMoveToMainnet(address burner, uint256 value, string note) onlyOwner public returns (bool ret) { ret = burnFrom(burner, value); emit LBKBurnWhenMoveToMainnet(msg.sender, burner, value, note); } function lbkBatchBurnWhenMoveToMainnet(address[] burners, uint256[] values, string note) onlyOwner public returns (bool ret) { uint256 length = burners.length; require(length == values.length, "The size of \'burners\' and \'values\' array is different."); ret = true; for (uint256 i = 0; i < length; i++) { ret = ret && lbkBurnWhenMoveToMainnet(burners[i], values[i], note); } } /** * dev 이더로 LBK 를 구입하는 경우 */ function lbkSell( address from, address to, uint256 value, string note ) onlyOwner public returns (bool ret) { require(to != address(this), "The receive address is the Contact Address of LEGALBLOCK. You cannot send money to this address."); ret = super.transferFrom(from, to, value); emit LBKSell(from, msg.sender, to, value, note); } /** * dev 비트코인 등의 다른 코인으로 LBK 를 구입하는 경우 * dev EOA 가 트랜잭션을 일으켜서 처리해야 하기 때문에 다계좌를 기준으로 한다. (가스비 아끼기 위함) */ function lbkBatchSellByOtherCoin( address from, address[] to, uint256[] values, uint256 processIdHash, uint256[] userIdHash, string note ) onlyOwner public returns (bool ret) { uint256 length = to.length; require(length == values.length, "The size of \'to\' and \'values\' array is different."); require(length == userIdHash.length, "The size of \'to\' and \'userIdHash\' array is different."); ret = true; for (uint256 i = 0; i < length; i++) { require(to[i] != address(this), "The receive address is the Contact Address of LEGALBLOCK. You cannot send money to this address."); ret = ret && super.transferFrom(from, to[i], values[i]); emit LBKSellByOtherCoin(from, msg.sender, to[i], values[i], processIdHash, userIdHash[i], note); } } /** * dev 팀에게 전송하는 경우 */ function lbkTransferToTeam( address from, address to, uint256 value, string note ) onlyOwner public returns (bool ret) { require(to != address(this), "The receive address is the Contact Address of LEGALBLOCK. You cannot send money to this address."); ret = super.transferFrom(from, to, value); emit LBKTransferToTeam(from, msg.sender, to, value, note); } /** * dev 파트너 및 어드바이저에게 전송하는 경우 */ function lbkTransferToPartner( address from, address to, uint256 value, string note ) onlyOwner public returns (bool ret) { require(to != address(this), "The receive address is the Contact Address of LEGALBLOCK. You cannot send money to this address."); ret = super.transferFrom(from, to, value); emit LBKTransferToPartner(from, msg.sender, to, value, note); } /** * dev 에코시스템(커뮤니티 활동을 통한 보상 등)으로 LBK 지급 * dev EOA 가 트랜잭션을 일으켜서 처리해야 하기 때문에 다계좌를 기준으로 한다. (가스비 아끼기 위함) */ function lbkBatchTransferToEcosystem( address from, address[] to, uint256[] values, uint256 processIdHash, uint256[] userIdHash, string note ) onlyOwner public returns (bool ret) { uint256 length = to.length; require(length == values.length, "The size of \'to\' and \'values\' array is different."); require(length == userIdHash.length, "The size of \'to\' and \'userIdHash\' array is different."); ret = true; for (uint256 i = 0; i < length; i++) { require(to[i] != address(this), "The receive address is the Contact Address of LEGALBLOCK. You cannot send money to this address."); ret = ret && super.transferFrom(from, to[i], values[i]); emit LBKTransferToEcosystem(from, msg.sender, to[i], values[i], processIdHash, userIdHash[i], note); } } /** * dev 바운티 참여자에게 LBK 지급 * dev EOA 가 트랜잭션을 일으켜서 처리해야 하기 때문에 다계좌를 기준으로 한다. (가스비 아끼기 위함) */ function lbkBatchTransferToBounty( address from, address[] to, uint256[] values, uint256 processIdHash, uint256[] userIdHash, string note ) onlyOwner public returns (bool ret) { uint256 length = to.length; require(to.length == values.length, "The size of \'to\' and \'values\' array is different."); ret = true; for (uint256 i = 0; i < length; i++) { require(to[i] != address(this), "The receive address is the Contact Address of LEGALBLOCK. You cannot send money to this address."); ret = ret && super.transferFrom(from, to[i], values[i]); emit LBKTransferToBounty(from, msg.sender, to[i], values[i], processIdHash, userIdHash[i], note); } } function destroy() onlyRoot public { selfdestruct(root); } } /** * @title LEGALBLOCK */ contract LEGALBLOCK is LBKBaseToken { using AddressUtils for address; event TransferedToLBKDapp( address indexed owner, address indexed spender, address indexed to, uint256 value, LBKReceiver.LBKReceiveType receiveType); string public constant name = "LEGALBLOCK"; string public constant symbol = "LBK"; uint8 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 15e9 * (10 ** uint256(decimals)); constructor() public { totalSupply_ = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY; emit Transfer(0x0, msg.sender, INITIAL_SUPPLY); } function lbkTransfer(address to, uint256 value, string note) public returns (bool ret) { ret = super.lbkTransfer(to, value, note); postTransfer(msg.sender, msg.sender, to, value, LBKReceiver.LBKReceiveType.LBK_TRANSFER); } function lbkTransferFrom(address from, address to, uint256 value, string note) public returns (bool ret) { ret = super.lbkTransferFrom(from, to, value, note); postTransfer(from, msg.sender, to, value, LBKReceiver.LBKReceiveType.LBK_TRANSFER); } function postTransfer(address owner, address spender, address to, uint256 value, LBKReceiver.LBKReceiveType receiveType) internal returns (bool) { if (to.isContract()) { bool callOk = address(to).call(bytes4(keccak256("onLBKReceived(address,address,uint256,uint8)")), owner, spender, value, receiveType); if (callOk) { emit TransferedToLBKDapp(owner, spender, to, value, receiveType); } } return true; } function lbkMintTo(address to, uint256 amount, string note) onlySuperOwner public returns (bool ret) { ret = super.lbkMintTo(to, amount, note); postTransfer(0x0, msg.sender, to, amount, LBKReceiver.LBKReceiveType.LBK_MINT); } function lbkBurnFrom(address from, uint256 value, string note) onlyOwner public returns (bool ret) { ret = super.lbkBurnFrom(from, value, note); postTransfer(0x0, msg.sender, from, value, LBKReceiver.LBKReceiveType.LBK_BURN); } } /** * @title LEGALBLOCK Receiver */ contract LBKReceiver { enum LBKReceiveType { LBK_TRANSFER, LBK_MINT, LBK_BURN } function onLBKReceived(address owner, address spender, uint256 value, LBKReceiveType receiveType) public returns (bool); } /** * @title LBKDappSample */ contract LBKDappSample is LBKReceiver { event LogOnReceiveLBK(string message, address indexed owner, address indexed spender, uint256 value, LBKReceiveType receiveType); function onLBKReceived(address owner, address spender, uint256 value, LBKReceiveType receiveType) public returns (bool) { emit LogOnReceiveLBK("I receive LEGALBLOCK.", owner, spender, value, receiveType); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"note","type":"string"}],"name":"unlockTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"owners","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newSuperOwner","type":"address"}],"name":"changeSuperOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkBurnFrom","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"note","type":"string"}],"name":"lock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"delayLockBeforeValues","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkTransfer","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"LOCK_MAX","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address[]"},{"name":"values","type":"uint256[]"},{"name":"processIdHash","type":"uint256"},{"name":"userIdHash","type":"uint256[]"},{"name":"note","type":"string"}],"name":"lbkBatchTransferToEcosystem","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newRoot","type":"address"}],"name":"changeRoot","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getMyUnlockValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"unlockAddrs","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address[]"},{"name":"values","type":"uint256[]"},{"name":"processIdHash","type":"uint256"},{"name":"userIdHash","type":"uint256[]"},{"name":"note","type":"string"}],"name":"lbkBatchTransferToBounty","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkApprove","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkIncreaseApproval","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"amount","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkMintTo","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"note","type":"string"}],"name":"lockTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkSell","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkDecreaseApproval","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"candidateRootMap","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkTransferToPartner","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"destroy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"newOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"superOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"burner","type":"address"},{"name":"value","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkBurnWhenMoveToMainnet","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"delayLockTimes","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address[]"},{"name":"values","type":"uint256[]"},{"name":"processIdHash","type":"uint256"},{"name":"userIdHash","type":"uint256[]"},{"name":"note","type":"string"}],"name":"lbkBatchSellByOtherCoin","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"note","type":"string"}],"name":"unlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkTransferFrom","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"delayUnlock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newRoot","type":"address"}],"name":"changeRootByDAO","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockValues","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"deleteOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"locked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"value","type":"uint256"},{"name":"note","type":"string"}],"name":"setLockValue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"},{"name":"note","type":"string"}],"name":"lbkTransferToTeam","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"ownerList","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"burners","type":"address[]"},{"name":"values","type":"uint256[]"},{"name":"note","type":"string"}],"name":"lbkBatchBurnWhenMoveToMainnet","outputs":[{"name":"ret","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"root","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"delayLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"delayLockValues","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"receiveType","type":"uint8"}],"name":"TransferedToLBKDapp","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKTransferFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"controller","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKMintTo","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"controller","type":"address"},{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKBurnFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"controller","type":"address"},{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKBurnWhenMoveToMainnet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"processIdHash","type":"uint256"},{"indexed":false,"name":"userIdHash","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKSellByOtherCoin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKTransferToTeam","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKTransferToPartner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"processIdHash","type":"uint256"},{"indexed":false,"name":"userIdHash","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKTransferToEcosystem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"processIdHash","type":"uint256"},{"indexed":false,"name":"userIdHash","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"LBKTransferToBounty","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"time","type":"uint256"}],"name":"SetDelayLockValue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"locked","type":"bool"},{"indexed":false,"name":"note","type":"string"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"},{"indexed":false,"name":"locked","type":"bool"},{"indexed":false,"name":"note","type":"string"}],"name":"LockedTo","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"SetLockValue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newRoot","type":"address"}],"name":"ChangedRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newSuperOwner","type":"address"}],"name":"ChangedSuperOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOwner","type":"address"}],"name":"AddedNewOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"deletedOwner","type":"address"}],"name":"DeletedOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
60806040526008805460ff191660011790553480156200001e57600080fd5b506003805433600160a060020a031991821681179283905560048054831682179055600160a060020a039092166000908152600560209081526040808320805460ff1916600190811790915560068054918201815584527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f018054909416851790935582519081019092528152620000c091906401000000006200011f810204565b6b3077b58d5d37839198000000600181905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3620003ea565b3360009081526005602052604090205460ff161515620001a057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4f776e65722070726976696c656467652069732072657175697265642e000000604482015290519081900360640190fd5b600160a060020a0382166000908152600a60205260409020546000191415620001da57620001da82600083640100000000620002a3810204565b600160a060020a0382166000818152600960209081526040808320805460ff19166001179055805183815280830182815286519282019290925285517f4bf46282901af80a4309ce07c36d841184ce98297f8735f7769d169497ac7a4c94938793916060840191850190808383895b838110156200026357818101518382015260200162000249565b50505050905090810190601f168015620002915780820380516001836020036101000a031916815260200191505b50935050505060405180910390a25050565b3360009081526005602052604090205460ff1615156200032457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4f776e65722070726976696c656467652069732072657175697265642e000000604482015290519081900360640190fd5b600160a060020a0383166000818152600a60209081526040808320869055805186815280830182815286519282019290925285517fb19425af6288c6bb0d88f64d6d1cfe5eb7e2d31ee92f1012798df97a9b6b011a9488948894926060850192918601918190849084905b83811015620003a95781810151838201526020016200038f565b50505050905090810190601f168015620003d75780820380516001836020036101000a031916815260200191505b50935050505060405180910390a2505050565b614e8f80620003fa6000396000f3006080604052600436106102625763ffffffff60e060020a6000350416623078b08114610267578063022914a7146102d057806306fdde0314610305578063095ea7b31461038f5780631044c66b146103b357806318160ddd146103d457806323b872dd146103fb5780632e1cd9d0146104255780632ff2e9dc1461048e578063313ce567146104a3578063320a98fd146104ce578063325c8df0146105275780633706cc07146105485780633d8731ac146105b157806347050d2d146105c65780634a7902d2146106e05780634aa678c314610701578063505450d41461071657806352ff46c3146107375780635445713b146108515780635869f36a146108ba57806366188463146109235780636627048e146109475780636bd5e26a146109b05780636c6838e814610a1757806370a0823114610a8657806378b915e414610aa75780637d684e3214610b10578063820387a214610b4d57806383197ef014610bbc5780638595245414610bd157806387dcd2b614610bf25780638df1dcdc14610c075780638dfb263614610c7057806395d89b4114610c91578063a8b025a914610ca6578063a9059cbb14610dc0578063a96ce7aa14610de4578063bdb74f9214610e3d578063c1ce497b14610eac578063caa0525214610ec1578063cb619a3314610ee2578063cd5c4c7014610f03578063cf30901214610f24578063d712800f14610f39578063d73dd62314610fa2578063d84103d914610fc6578063dd62ed3e14611035578063def79ab51461105c578063e675670714611074578063ebf0c71714611140578063f63d291214611155578063f7631f3f1461116d575b600080fd5b34801561027357600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526102ce958335600160a060020a031695369560449491939091019190819084018382808284375094975061118e9650505050505050565b005b3480156102dc57600080fd5b506102f1600160a060020a03600435166112d9565b604080519115158252519081900360200190f35b34801561031157600080fd5b5061031a6112ee565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035457818101518382015260200161033c565b50505050905090810190601f1680156103815780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561039b57600080fd5b506102f1600160a060020a0360043516602435611325565b3480156103bf57600080fd5b506102f1600160a060020a0360043516611349565b3480156103e057600080fd5b506103e9611478565b60408051918252519081900360200190f35b34801561040757600080fd5b506102f1600160a060020a036004358116906024351660443561147f565b34801561043157600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506114a59650505050505050565b34801561049a57600080fd5b506103e9611520565b3480156104af57600080fd5b506104b8611530565b6040805160ff9092168252519081900360200190f35b3480156104da57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102ce9436949293602493928401919081908401838280828437509497506115359650505050505050565b34801561053357600080fd5b506103e9600160a060020a036004351661164a565b34801561055457600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061165c9650505050505050565b3480156105bd57600080fd5b506103e9611679565b3480156105d257600080fd5b506040805160206004602480358281013584810280870186019097528086526102f1968435600160a060020a031696369660449591949091019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375050604080516020808901358a01803580830284810184018652818552999c8b359c909b909a95019850929650810194509092508291908501908490808284375050604080516020601f89358b018035918201839004830284018301909452808352979a99988101979196509182019450925082915084018382808284375094975061167f9650505050505050565b3480156106ec57600080fd5b506102f1600160a060020a03600435166119e5565b34801561070d57600080fd5b506103e9611b14565b34801561072257600080fd5b506102f1600160a060020a0360043516611bc4565b34801561074357600080fd5b506040805160206004602480358281013584810280870186019097528086526102f1968435600160a060020a031696369660449591949091019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375050604080516020808901358a01803580830284810184018652818552999c8b359c909b909a95019850929650810194509092508291908501908490808284375050604080516020601f89358b018035918201839004830284018301909452808352979a999881019791965091820194509250829150840183828082843750949750611bd99650505050505050565b34801561085d57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750611e8e9650505050505050565b3480156108c657600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750611f589650505050505050565b34801561092f57600080fd5b506102f1600160a060020a0360043516602435611ff4565b34801561095357600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506120119650505050505050565b3480156109bc57600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526102ce958335600160a060020a031695369560449491939091019190819084018382808284375094975061208e9650505050505050565b348015610a2357600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102f194600160a060020a03813581169560248035909216956044359536956084940191819084018382808284375094975061217c9650505050505050565b348015610a9257600080fd5b506103e9600160a060020a036004351661231e565b348015610ab357600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506123399650505050505050565b348015610b1c57600080fd5b50610b31600160a060020a0360043516612345565b60408051600160a060020a039092168252519081900360200190f35b348015610b5957600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102f194600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506123609650505050505050565b348015610bc857600080fd5b506102ce6124be565b348015610bdd57600080fd5b506102f1600160a060020a036004351661252e565b348015610bfe57600080fd5b50610b31612739565b348015610c1357600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506127489650505050505050565b348015610c7c57600080fd5b506103e9600160a060020a0360043516612824565b348015610c9d57600080fd5b5061031a612836565b348015610cb257600080fd5b506040805160206004602480358281013584810280870186019097528086526102f1968435600160a060020a031696369660449591949091019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375050604080516020808901358a01803580830284810184018652818552999c8b359c909b909a95019850929650810194509092508291908501908490808284375050604080516020601f89358b018035918201839004830284018301909452808352979a99988101979196509182019450925082915084018382808284375094975061286d9650505050505050565b348015610dcc57600080fd5b506102f1600160a060020a0360043516602435612ba0565b348015610df057600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102ce943694929360249392840191908190840183828082843750949750612bbd9650505050505050565b348015610e4957600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102f194600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750612c889650505050505050565b348015610eb857600080fd5b506102f1612caf565b348015610ecd57600080fd5b506102f1600160a060020a0360043516612cc0565b348015610eee57600080fd5b506103e9600160a060020a0360043516612f92565b348015610f0f57600080fd5b506102f1600160a060020a0360043516612fa4565b348015610f3057600080fd5b506102f16131d9565b348015610f4557600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102ce948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506131e29650505050505050565b348015610fae57600080fd5b506102f1600160a060020a03600435166024356132fc565b348015610fd257600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102f194600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506133199650505050505050565b34801561104157600080fd5b506103e9600160a060020a0360043581169060243516613477565b34801561106857600080fd5b50610b316004356134a2565b34801561108057600080fd5b50604080516020600480358082013583810280860185019096528085526102f195369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497506134ca9650505050505050565b34801561114c57600080fd5b50610b3161360c565b34801561116157600080fd5b506102f160043561361b565b34801561117957600080fd5b506103e9600160a060020a036004351661380f565b3360009081526005602052604090205460ff1615156111e5576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a0382166000908152600a6020526040902054600019141561121357611213826000836131e2565b600160a060020a0382166000818152600960209081526040808320805460ff19166001179055805183815280830182815286519282019290925285517f4bf46282901af80a4309ce07c36d841184ce98297f8735f7769d169497ac7a4c94938793916060840191850190808383895b8381101561129a578181015183820152602001611282565b50505050905090810190601f1680156112c75780820380516001836020036101000a031916815260200191505b50935050505060405180910390a25050565b60056020526000908152604090205460ff1681565b60408051808201909152600a81527f4c4547414c424c4f434b00000000000000000000000000000000000000000000602082015281565b600061134283836020604051908101604052806000815250611e8e565b9392505050565b600354600090600160a060020a031633146113ae576040805160e560020a62461bcd02815260206004820152601b60248201527f526f6f742070726976696c6567652069732072657175697265642e0000000000604482015290519081900360640190fd5b600160a060020a038216151561141f576040805160e560020a62461bcd0281526020600482015260436024820152600080516020614d648339815191526044820152600080516020614e24833981519152606482015260e960020a6239b99702608482015290519081900360a40190fd5b60048054600160a060020a038416600160a060020a0319909116811790915560408051918252517f94b17f1a4844062cbed00809347b0f8149fc88c5a3ea720c7aed42c559eed46d9181900360200190a1506001919050565b6001545b90565b600061149d8484846020604051908101604052806000815250612c88565b949350505050565b3360009081526005602052604081205460ff1615156114fc576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b611507848484613821565b9050611518600033868660026138fd565b509392505050565b6b3077b58d5d3783919800000081565b601281565b3360009081526005602052604090205460ff16151561158c576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b6008805460ff1916600117908190556040805160ff929092168015158352602080840183815285519385019390935284517fc1086893b0a3f1d991fd25e26cd28cad11de174842b04a55cc2423ed178e43829492938693929091606084019185019080838360005b8381101561160c5781810151838201526020016115f4565b50505050905090810190601f1680156116395780820380516001836020036101000a031916815260200191505b50935050505060405180910390a150565b600c6020526000908152604090205481565b6000611669848484613a81565b90506115183333868660006138fd565b60001981565b336000908152600560205260408120548190819060ff1615156116da576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b87518751909250821461175d576040805160e560020a62461bcd02815260206004820152603160248201527f5468652073697a65206f662027746f2720616e64202776616c7565732720617260448201527f72617920697320646966666572656e742e000000000000000000000000000000606482015290519081900360840190fd5b845182146117db576040805160e560020a62461bcd02815260206004820152603560248201527f5468652073697a65206f662027746f2720616e6420277573657249644861736860448201527f2720617272617920697320646966666572656e742e0000000000000000000000606482015290519081900360840190fd5b506001915060005b818110156119d957875130908990839081106117fb57fe5b60209081029091010151600160a060020a0316141561187a576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b8280156118bb57506118bb89898381518110151561189457fe5b9060200190602002015189848151811015156118ac57fe5b90602001906020020151613b7f565b925087818151811015156118cb57fe5b90602001906020020151600160a060020a031633600160a060020a03168a600160a060020a03167f46732c6597d2f271226a30dbf728c12f77fb7dac6f0dbe8d572e5377e3c382cc8a8581518110151561192157fe5b906020019060200201518a8a8781518110151561193a57fe5b906020019060200201518a6040518085815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561199457818101518382015260200161197c565b50505050905090810190601f1680156119c15780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a46001016117e3565b50509695505050505050565b600354600090600160a060020a03163314611a4a576040805160e560020a62461bcd02815260206004820152601b60248201527f526f6f742070726976696c6567652069732072657175697265642e0000000000604482015290519081900360640190fd5b600160a060020a0382161515611abb576040805160e560020a62461bcd0281526020600482015260436024820152600080516020614d648339815191526044820152600080516020614e24833981519152606482015260e960020a6239b99702608482015290519081900360a40190fd5b60038054600160a060020a038416600160a060020a0319909116811790915560408051918252517f43ddeae7116ae634a7d05c2d1c588bca11b7bbc8cb96fbb2cb9c5b1afdf9ce129181900360200190a1506001919050565b336000818152600d60205260408120549091829182904210611b6a57600160a060020a0382166000908152600b60209081526040808320549183905290912054611b639163ffffffff613d8516565b9250611ba0565b600160a060020a0382166000908152600c60209081526040808320549183905290912054611b9d9163ffffffff613d8516565b92505b611ba8613d97565b905080831115611bba57809350611bbe565b8293505b50505090565b60096020526000908152604090205460ff1681565b336000908152600560205260408120548190819060ff161515611c34576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b875187519092508214611cb7576040805160e560020a62461bcd02815260206004820152603160248201527f5468652073697a65206f662027746f2720616e64202776616c7565732720617260448201527f72617920697320646966666572656e742e000000000000000000000000000000606482015290519081900360840190fd5b506001915060005b818110156119d95787513090899083908110611cd757fe5b60209081029091010151600160a060020a03161415611d56576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b828015611d705750611d7089898381518110151561189457fe5b92508781815181101515611d8057fe5b90602001906020020151600160a060020a031633600160a060020a03168a600160a060020a03167f843fee6b240ccbe362ec9ff87bbe6066267f432370ecb72826665f566d8c7c0e8a85815181101515611dd657fe5b906020019060200201518a8a87815181101515611def57fe5b906020019060200201518a6040518085815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611e49578181015183820152602001611e31565b50505050905090810190601f168015611e765780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4600101611cbf565b6000611e9a8484613e3b565b905083600160a060020a031633600160a060020a03167fc42d136c544a0985d54d6099e13e96aaeb0d02385deaa85418ba2dbcef0568b385856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611f16578181015183820152602001611efe565b50505050905090810190601f168015611f435780820380516001836020036101000a031916815260200191505b50935050505060405180910390a39392505050565b6000611f648484613ea1565b336000818152600260209081526040808320600160a060020a038a168085529083528184205482518181528085018481528a5194820194909452895197985091967fc42d136c544a0985d54d6099e13e96aaeb0d02385deaa85418ba2dbcef0568b39591948a94926060850192918601919081908490849083811015611f16578181015183820152602001611efe565b600061134283836020604051908101604052806000815250612339565b600454600090600160a060020a03163314612072576040805160e560020a62461bcd0281526020600482015260226024820152600080516020614dc4833981519152604482015260f160020a61321702606482015290519081900360840190fd5b61207d848484613f3a565b9050611518600033868660016138fd565b3360009081526005602052604090205460ff1615156120e5576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b6120f282600019836131e2565b600160a060020a0382166000818152600960209081526040808320805460ff191690558051600180825281840183815287519383019390935286517f4bf46282901af80a4309ce07c36d841184ce98297f8735f7769d169497ac7a4c959194889492606085019291860191908190849084908381101561129a578181015183820152602001611282565b3360009081526005602052604081205460ff1615156121d3576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a03841630141561224a576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b612255858585613b7f565b905083600160a060020a031633600160a060020a031686600160a060020a03167f6694ed3a35939e3a57c2b60c17d8745774d2e58d8b3036947b20879ee236852b86866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156122db5781810151838201526020016122c3565b50505050905090810190601f1680156123085780820380516001836020036101000a031916815260200191505b50935050505060405180910390a4949350505050565b600160a060020a031660009081526020819052604090205490565b6000611f648484614020565b600760205260009081526040902054600160a060020a031681565b3360009081526005602052604081205460ff1615156123b7576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a03841630141561242e576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b612439858585613b7f565b905083600160a060020a031633600160a060020a031686600160a060020a03167fbc8b89a32127702fe6ba17414ce86e9cf382fa5e17314f1585f0002ff1e5ee5b8686604051808381526020018060200182810382528381815181526020019150805190602001908083836000838110156122db5781810151838201526020016122c3565b600354600160a060020a03163314612520576040805160e560020a62461bcd02815260206004820152601b60248201527f526f6f742070726976696c6567652069732072657175697265642e0000000000604482015290519081900360640190fd5b600354600160a060020a0316ff5b600454600090600160a060020a0316331461258f576040805160e560020a62461bcd0281526020600482015260226024820152600080516020614dc4833981519152604482015260f160020a61321702606482015290519081900360840190fd5b600160a060020a0382161515612600576040805160e560020a62461bcd0281526020600482015260436024820152600080516020614d648339815191526044820152600080516020614e24833981519152606482015260e960020a6239b99702608482015290519081900360a40190fd5b600160a060020a03821660009081526005602052604090205460ff1615612697576040805160e560020a62461bcd02815260206004820152602360248201527f54686973206164647265737320697320616c726561647920726567697374657260448201527f65642e0000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382166000818152600560209081526040808320805460ff191660019081179091556006805491820181559093527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f9092018054600160a060020a03191684179055815192835290517f5446d64d957daf41eca8227aa8fa5eb7f92c617adf03fbd9df64e8eb564d824e9281900390910190a1506001919050565b600454600160a060020a031681565b3360009081526005602052604081205460ff16151561279f576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b6127a98484614110565b905083600160a060020a031633600160a060020a03167fb8fc37b8d9ff0bfbde9e59521638f1bff9792af7682c7e5edc93b120d909e200858560405180838152602001806020018281038252838181518152602001915080519060200190808383600083811015611f16578181015183820152602001611efe565b600d6020526000908152604090205481565b60408051808201909152600381527f4c424b0000000000000000000000000000000000000000000000000000000000602082015281565b336000908152600560205260408120548190819060ff1615156128c8576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b87518751909250821461294b576040805160e560020a62461bcd02815260206004820152603160248201527f5468652073697a65206f662027746f2720616e64202776616c7565732720617260448201527f72617920697320646966666572656e742e000000000000000000000000000000606482015290519081900360840190fd5b845182146129c9576040805160e560020a62461bcd02815260206004820152603560248201527f5468652073697a65206f662027746f2720616e6420277573657249644861736860448201527f2720617272617920697320646966666572656e742e0000000000000000000000606482015290519081900360840190fd5b506001915060005b818110156119d957875130908990839081106129e957fe5b60209081029091010151600160a060020a03161415612a68576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b828015612a825750612a8289898381518110151561189457fe5b92508781815181101515612a9257fe5b90602001906020020151600160a060020a031633600160a060020a03168a600160a060020a03167fbf46a843eeff7859c7a579aafa44e7d58c0bf5e7406dfeacf5f1938b69bef9918a85815181101515612ae857fe5b906020019060200201518a8a87815181101515612b0157fe5b906020019060200201518a6040518085815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612b5b578181015183820152602001612b43565b50505050905090810190601f168015612b885780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a46001016129d1565b60006113428383602060405190810160405280600081525061165c565b3360009081526005602052604090205460ff161515612c14576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b6008805460ff19169055604080516000808252602080830184815285519484019490945284517fc1086893b0a3f1d991fd25e26cd28cad11de174842b04a55cc2423ed178e43829492938693909290916060840191850190808383898381101561160c5781810151838201526020016115f4565b6000612c9685858585614210565b9050612ca68533868660006138fd565b50949350505050565b6000612cbb600061361b565b905090565b336000908152600560205260408120548190819060ff161515612d1b576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a0384161515612d8c576040805160e560020a62461bcd0281526020600482015260436024820152600080516020614d648339815191526044820152600080516020614e24833981519152606482015260e960020a6239b99702608482015290519081900360a40190fd5b33600090815260076020526040902054600160a060020a0385811691161415612e25576040805160e560020a62461bcd02815260206004820152602860248201527f596f75206861766520616c726561647920766f74656420666f7220746869732060448201527f6163636f756e742e000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50503360009081526007602052604081208054600160a060020a031916600160a060020a038516179055805b60065460ff82161015612ebe5783600160a060020a03166007600060068460ff16815481101515612e7e57fe5b6000918252602080832090910154600160a060020a039081168452908301939093526040909101902054161415612eb6576001909101905b600101612e51565b600654600290048260ff161115612f88575060038054600160a060020a031916600160a060020a03851617905560005b60065460ff82161015612f4b576007600060068360ff16815481101515612f1157fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190208054600160a060020a0319169055600101612eee565b60408051600160a060020a038616815290517f43ddeae7116ae634a7d05c2d1c588bca11b7bbc8cb96fbb2cb9c5b1afdf9ce129181900360200190a15b5060019392505050565b600a6020526000908152604090205481565b6004546000908190600160a060020a03163314613007576040805160e560020a62461bcd0281526020600482015260226024820152600080516020614dc4833981519152604482015260f160020a61321702606482015290519081900360840190fd5b600160a060020a03831660009081526005602052604090205460ff16151561309f576040805160e560020a62461bcd02815260206004820152602860248201527f5468697320696e7075742061646472657373206973206e6f742061207375706560448201527f72206f776e65722e000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a0382166000908152600560205260408120805460ff191690555b6006548110156131945782600160a060020a03166006828154811015156130e457fe5b600091825260209091200154600160a060020a0316141561318c576006805461311490600163ffffffff613d8516565b8154811061311e57fe5b60009182526020909120015460068054600160a060020a03909216918390811061314457fe5b60009182526020909120018054600160a060020a031916600160a060020a039290921691909117905560065461317b906001613d85565b613186600682614d20565b50613194565b6001016130c1565b60408051600160a060020a038516815290517f1e64d9a491033a9731fa82493f0ab60e9f74294eca27edd93629f1fbaa15d2879181900360200190a150600192915050565b60085460ff1681565b3360009081526005602052604090205460ff161515613239576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a0383166000818152600a60209081526040808320869055805186815280830182815286519282019290925285517fb19425af6288c6bb0d88f64d6d1cfe5eb7e2d31ee92f1012798df97a9b6b011a9488948894926060850192918601918190849084905b838110156132bc5781810151838201526020016132a4565b50505050905090810190601f1680156132e95780820380516001836020036101000a031916815260200191505b50935050505060405180910390a2505050565b600061134283836020604051908101604052806000815250611f58565b3360009081526005602052604081205460ff161515613370576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a0384163014156133e7576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b6133f2858585613b7f565b905083600160a060020a031633600160a060020a031686600160a060020a03167fe7d1878c1e2a3b9b8dec382034e21bd5e79bf143c08481ca7dd7c54da9f84f658686604051808381526020018060200182810382528381815181526020019150805190602001908083836000838110156122db5781810151838201526020016122c3565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60068054829081106134b057fe5b600091825260209091200154600160a060020a0316905081565b336000908152600560205260408120548190819060ff161515613525576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b8551855190925082146135a8576040805160e560020a62461bcd02815260206004820152603660248201527f5468652073697a65206f6620276275726e6572732720616e64202776616c756560448201527f732720617272617920697320646966666572656e742e00000000000000000000606482015290519081900360840190fd5b506001915060005b81811015613603578280156135f957506135f986828151811015156135d157fe5b9060200190602002015186838151811015156135e957fe5b9060200190602002015186612748565b92506001016135b0565b50509392505050565b600354600160a060020a031681565b33600090815260208190526040812054821115613682576040805160e560020a62461bcd02815260206004820152601d60248201527f596f75722062616c616e636520697320696e73756666696369656e742e000000604482015290519081900360640190fd5b336000908152600b602052604090205482106136af57336000908152600d602052604090204290556137b3565b336000908152600d6020526040902054421015613788576040805160e560020a62461bcd02815260206004820152607860248201527f5468652072656d61696e696e67206d6f6e657920696e20746865206163636f7560448201527f6e742063616e6e6f7420626520756e6c6f636b656420636f6e74696e756f757360648201527f6c792e20596f752063616e6e6f742072656e657720756e74696c20313220686f60848201527f757273206166746572207468652066697273742072756e2e000000000000000060a482015290519081900360c40190fd5b336000908152600d6020908152604080832061a8c042019055600b825280832054600c909252909120555b336000818152600b60209081526040808320869055600d8252918290205482518681529182015281517f29f8b22a98b13376caf4551cf7eb973ad73a6b94bb83780818b808e04bf86af5929181900390910190a2506001919050565b600b6020526000908152604090205481565b3360009081526005602052604081205460ff161515613878576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b6138828484614110565b905083600160a060020a031633600160a060020a03167f8eb32cafb0cf26efee30e87cd8fcd4de2aaddc24e246cefa80a822d8b5da2647858560405180838152602001806020018281038252838181518152602001915080519060200190808383600083811015611f16578181015183820152602001611efe565b60008061391285600160a060020a0316614319565b15613a745784600160a060020a031660405180807f6f6e4c424b526563656976656428616464726573732c616464726573732c756981526020017f6e743235362c75696e7438290000000000000000000000000000000000000000815250602c019050604051809103902060e060020a9004888887876040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184600160a060020a0316600160a060020a031681526020018381526020018260028111156139e057fe5b60ff1681526020019450505050506000604051808303816000875af19250505090508015613a745784600160a060020a031686600160a060020a031688600160a060020a03167f9df0ff3e8a747a2f4b13c576a6d834fa1c89e4996027e5b8516cad45fcf66da4878760405180838152602001826002811115613a5f57fe5b60ff1681526020019250505060405180910390a45b5060019695505050505050565b6000600160a060020a038416301415613afa576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b613b048484614321565b905083600160a060020a031633600160a060020a03167ff72d77fe5fc35130eec6674380320a02f9398663c3d490e5ad8e40bd2dddbec5858560405180838152602001806020018281038252838181518152602001915080519060200190808383600083811015611f16578181015183820152602001611efe565b336000908152600d6020526040812054849083904210613c7457600160a060020a0382166000908152600b60209081526040808320549183905290912054613bcd908363ffffffff613d8516565b1015613c6f576040805160e560020a62461bcd02815260206004820152605060248201527f5472616e7366657261626c65206c696d69742065786365656465642e2043686160448201527f6e6765207468652062616c616e6365206c6f636b2076616c756520666972737460648201527f20616e64207468656e2075736520697400000000000000000000000000000000608482015290519081900360a40190fd5b613d70565b600160a060020a0382166000908152600c60209081526040808320549183905290912054613ca8908363ffffffff613d8516565b1015613d70576040805160e560020a62461bcd02815260206004820152607560248201527f5472616e7366657261626c65206c696d69742065786365656465642e20506c6560448201527f617365206e6f746520746861742074686520726573696475616c206c6f636b2060648201527f76616c756520686173206368616e67656420616e642069742077696c6c20746160848201527f6b6520313220686f75727320746f206170706c792e000000000000000000000060a482015290519081900360c40190fd5b613d7b868686614526565b9695505050505050565b600082821115613d9157fe5b50900390565b600854600090339060ff161580613dc65750600160a060020a03811660009081526009602052604090205460ff165b8015613df35750600160a060020a0381166000908152600a60209081526040808320549183905290912054115b15613e3257600160a060020a0381166000908152600a60209081526040808320549183905290912054613e2b9163ffffffff613d8516565b9150613e37565b600091505b5090565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054613ed5908363ffffffff61466816565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600454600090600160a060020a03163314613f9b576040805160e560020a62461bcd0281526020600482015260226024820152600080516020614dc4833981519152604482015260f160020a61321702606482015290519081900360840190fd5b613fa5848461467b565b905083600160a060020a031633600160a060020a03167fd9386d383a90605f77da45e4db61fcfc6b8999c0ffba009c0c1d23c2681f7af9858560405180838152602001806020018281038252838181518152602001915080519060200190808383600083811015611f16578181015183820152602001611efe565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561407557336000908152600260209081526040808320600160a060020a03881684529091528120556140aa565b614085818463ffffffff613d8516565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a038216600090815260208190526040812054821115614180576040805160e560020a62461bcd02815260206004820152601d60248201527f596f75722062616c616e636520697320696e73756666696369656e742e000000604482015290519081900360640190fd5b600160a060020a0383166000908152602081905260409020546141a9908363ffffffff613d8516565b600160a060020a0384166000908152602081905260409020556001546141d5908363ffffffff613d8516565b600155604080518381529051600091600160a060020a03861691600080516020614e048339815191529181900360200190a350600192915050565b6000600160a060020a038416301415614289576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b614294858585613b7f565b905083600160a060020a031633600160a060020a031686600160a060020a03167ff9c19ac2dd83f90259a00db73dd44e7a73df5bb97ee33ed7ec184739088e98768686604051808381526020018060200182810382528381815181526020019150805190602001908083836000838110156122db5781810151838201526020016122c3565b6000903b1190565b336000818152600d60205260408120549091908390421061441757600160a060020a0382166000908152600b60209081526040808320549183905290912054614370908363ffffffff613d8516565b1015614412576040805160e560020a62461bcd02815260206004820152605060248201527f5472616e7366657261626c65206c696d69742065786365656465642e2043686160448201527f6e6765207468652062616c616e6365206c6f636b2076616c756520666972737460648201527f20616e64207468656e2075736520697400000000000000000000000000000000608482015290519081900360a40190fd5b614513565b600160a060020a0382166000908152600c6020908152604080832054918390529091205461444b908363ffffffff613d8516565b1015614513576040805160e560020a62461bcd02815260206004820152607560248201527f5472616e7366657261626c65206c696d69742065786365656465642e20506c6560448201527f617365206e6f746520746861742074686520726573696475616c206c6f636b2060648201527f76616c756520686173206368616e67656420616e642069742077696c6c20746160848201527f6b6520313220686f75727320746f206170706c792e000000000000000000000060a482015290519081900360c40190fd5b61451d8585614776565b95945050505050565b6008546000908490839060ff1615806145575750600160a060020a03821660009081526009602052604090205460ff165b15156145ad576040805160e560020a62461bcd02815260206004820181905260248201527f546865206163636f756e742069732063757272656e746c79206c6f636b65642e604482015290519081900360640190fd5b600160a060020a0382166000908152600a602090815260408083205491839052909120546145e1908363ffffffff613d8516565b101561465d576040805160e560020a62461bcd02815260206004820152602481018290527f5472616e7366657261626c65206c696d69742065786365656465642e2043686560448201527f636b2074686520737461747573206f6620746865206c6f636b2076616c75652e606482015290519081900360840190fd5b613d7b8686866148b7565b8181018281101561467557fe5b92915050565b6000600160a060020a03831615156146ee576040805160e560020a62461bcd0281526020600482015260436024820152600080516020614d648339815191526044820152600080516020614e24833981519152606482015260e960020a6239b99702608482015290519081900360a40190fd5b600154614701908363ffffffff61466816565b600155600160a060020a03831660009081526020819052604090205461472d908363ffffffff61466816565b600160a060020a038416600081815260208181526040808320949094558351868152935192939192600080516020614e048339815191529281900390910190a350600192915050565b6008546000903390839060ff1615806147a75750600160a060020a03821660009081526009602052604090205460ff165b15156147fd576040805160e560020a62461bcd02815260206004820181905260248201527f546865206163636f756e742069732063757272656e746c79206c6f636b65642e604482015290519081900360640190fd5b600160a060020a0382166000908152600a60209081526040808320549183905290912054614831908363ffffffff613d8516565b10156148ad576040805160e560020a62461bcd02815260206004820152602481018290527f5472616e7366657261626c65206c696d69742065786365656465642e2043686560448201527f636b2074686520737461747573206f6620746865206c6f636b2076616c75652e606482015290519081900360840190fd5b61451d8585614b6f565b6000600160a060020a038316151561493f576040805160e560020a62461bcd02815260206004820152603e60248201527f526563697069656e742061646472657373206973207a65726f2061646472657360448201527f732830292e20436865636b20746865206164647265737320616761696e2e0000606482015290519081900360840190fd5b600160a060020a0384166000908152602081905260409020548211156149d5576040805160e560020a62461bcd02815260206004820152602760248201527f5468652062616c616e6365206f66206163636f756e7420697320696e7375666660448201527f696369656e742e00000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115614a76576040805160e560020a62461bcd02815260206004820152603060248201527f496e73756666696369656e7420746f6b656e7320617070726f7665642066726f60448201527f6d206163636f756e74206f776e65722e00000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038416600090815260208190526040902054614a9f908363ffffffff613d8516565b600160a060020a038086166000908152602081905260408082209390935590851681522054614ad4908363ffffffff61466816565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054614b16908363ffffffff613d8516565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020614e04833981519152929181900390910190a35060019392505050565b6000600160a060020a0383161515614bf7576040805160e560020a62461bcd02815260206004820152603e60248201527f526563697069656e742061646472657373206973207a65726f2061646472657360448201527f732830292e20436865636b20746865206164647265737320616761696e2e0000606482015290519081900360840190fd5b33600090815260208190526040902054821115614c84576040805160e560020a62461bcd02815260206004820152602760248201527f5468652062616c616e6365206f66206163636f756e7420697320696e7375666660448201527f696369656e742e00000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b33600090815260208190526040902054614ca4908363ffffffff613d8516565b3360009081526020819052604080822092909255600160a060020a03851681522054614cd6908363ffffffff61466816565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020614e048339815191529281900390910190a350600192915050565b815481835581811115614d4457600083815260209020614d44918101908301614d49565b505050565b61147c91905b80821115613e375760008155600101614d4f560054686973206164647265737320746f20626520736574206973207a65726f2061546865207265636569766520616464726573732069732074686520436f6e746163742041646472657373206f66204c4547414c424c4f434b2e20596f7520636153757065724f776e65722070726976696c6564676520697320726571756972654f776e65722070726976696c656467652069732072657175697265642e000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6464726573732830292e20436865636b2074686520696e7075742061646472656e6e6f742073656e64206d6f6e657920746f207468697320616464726573732ea165627a7a7230582039b6f7a0f6681c71def9f3ef8e170c13ff21db2efa6bfdc839688d1bc9ff0c970029
Deployed Bytecode
0x6080604052600436106102625763ffffffff60e060020a6000350416623078b08114610267578063022914a7146102d057806306fdde0314610305578063095ea7b31461038f5780631044c66b146103b357806318160ddd146103d457806323b872dd146103fb5780632e1cd9d0146104255780632ff2e9dc1461048e578063313ce567146104a3578063320a98fd146104ce578063325c8df0146105275780633706cc07146105485780633d8731ac146105b157806347050d2d146105c65780634a7902d2146106e05780634aa678c314610701578063505450d41461071657806352ff46c3146107375780635445713b146108515780635869f36a146108ba57806366188463146109235780636627048e146109475780636bd5e26a146109b05780636c6838e814610a1757806370a0823114610a8657806378b915e414610aa75780637d684e3214610b10578063820387a214610b4d57806383197ef014610bbc5780638595245414610bd157806387dcd2b614610bf25780638df1dcdc14610c075780638dfb263614610c7057806395d89b4114610c91578063a8b025a914610ca6578063a9059cbb14610dc0578063a96ce7aa14610de4578063bdb74f9214610e3d578063c1ce497b14610eac578063caa0525214610ec1578063cb619a3314610ee2578063cd5c4c7014610f03578063cf30901214610f24578063d712800f14610f39578063d73dd62314610fa2578063d84103d914610fc6578063dd62ed3e14611035578063def79ab51461105c578063e675670714611074578063ebf0c71714611140578063f63d291214611155578063f7631f3f1461116d575b600080fd5b34801561027357600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526102ce958335600160a060020a031695369560449491939091019190819084018382808284375094975061118e9650505050505050565b005b3480156102dc57600080fd5b506102f1600160a060020a03600435166112d9565b604080519115158252519081900360200190f35b34801561031157600080fd5b5061031a6112ee565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035457818101518382015260200161033c565b50505050905090810190601f1680156103815780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561039b57600080fd5b506102f1600160a060020a0360043516602435611325565b3480156103bf57600080fd5b506102f1600160a060020a0360043516611349565b3480156103e057600080fd5b506103e9611478565b60408051918252519081900360200190f35b34801561040757600080fd5b506102f1600160a060020a036004358116906024351660443561147f565b34801561043157600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506114a59650505050505050565b34801561049a57600080fd5b506103e9611520565b3480156104af57600080fd5b506104b8611530565b6040805160ff9092168252519081900360200190f35b3480156104da57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102ce9436949293602493928401919081908401838280828437509497506115359650505050505050565b34801561053357600080fd5b506103e9600160a060020a036004351661164a565b34801561055457600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061165c9650505050505050565b3480156105bd57600080fd5b506103e9611679565b3480156105d257600080fd5b506040805160206004602480358281013584810280870186019097528086526102f1968435600160a060020a031696369660449591949091019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375050604080516020808901358a01803580830284810184018652818552999c8b359c909b909a95019850929650810194509092508291908501908490808284375050604080516020601f89358b018035918201839004830284018301909452808352979a99988101979196509182019450925082915084018382808284375094975061167f9650505050505050565b3480156106ec57600080fd5b506102f1600160a060020a03600435166119e5565b34801561070d57600080fd5b506103e9611b14565b34801561072257600080fd5b506102f1600160a060020a0360043516611bc4565b34801561074357600080fd5b506040805160206004602480358281013584810280870186019097528086526102f1968435600160a060020a031696369660449591949091019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375050604080516020808901358a01803580830284810184018652818552999c8b359c909b909a95019850929650810194509092508291908501908490808284375050604080516020601f89358b018035918201839004830284018301909452808352979a999881019791965091820194509250829150840183828082843750949750611bd99650505050505050565b34801561085d57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750611e8e9650505050505050565b3480156108c657600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750611f589650505050505050565b34801561092f57600080fd5b506102f1600160a060020a0360043516602435611ff4565b34801561095357600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506120119650505050505050565b3480156109bc57600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526102ce958335600160a060020a031695369560449491939091019190819084018382808284375094975061208e9650505050505050565b348015610a2357600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102f194600160a060020a03813581169560248035909216956044359536956084940191819084018382808284375094975061217c9650505050505050565b348015610a9257600080fd5b506103e9600160a060020a036004351661231e565b348015610ab357600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506123399650505050505050565b348015610b1c57600080fd5b50610b31600160a060020a0360043516612345565b60408051600160a060020a039092168252519081900360200190f35b348015610b5957600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102f194600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506123609650505050505050565b348015610bc857600080fd5b506102ce6124be565b348015610bdd57600080fd5b506102f1600160a060020a036004351661252e565b348015610bfe57600080fd5b50610b31612739565b348015610c1357600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102f1948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506127489650505050505050565b348015610c7c57600080fd5b506103e9600160a060020a0360043516612824565b348015610c9d57600080fd5b5061031a612836565b348015610cb257600080fd5b506040805160206004602480358281013584810280870186019097528086526102f1968435600160a060020a031696369660449591949091019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375050604080516020808901358a01803580830284810184018652818552999c8b359c909b909a95019850929650810194509092508291908501908490808284375050604080516020601f89358b018035918201839004830284018301909452808352979a99988101979196509182019450925082915084018382808284375094975061286d9650505050505050565b348015610dcc57600080fd5b506102f1600160a060020a0360043516602435612ba0565b348015610df057600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102ce943694929360249392840191908190840183828082843750949750612bbd9650505050505050565b348015610e4957600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102f194600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750612c889650505050505050565b348015610eb857600080fd5b506102f1612caf565b348015610ecd57600080fd5b506102f1600160a060020a0360043516612cc0565b348015610eee57600080fd5b506103e9600160a060020a0360043516612f92565b348015610f0f57600080fd5b506102f1600160a060020a0360043516612fa4565b348015610f3057600080fd5b506102f16131d9565b348015610f4557600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102ce948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506131e29650505050505050565b348015610fae57600080fd5b506102f1600160a060020a03600435166024356132fc565b348015610fd257600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102f194600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506133199650505050505050565b34801561104157600080fd5b506103e9600160a060020a0360043581169060243516613477565b34801561106857600080fd5b50610b316004356134a2565b34801561108057600080fd5b50604080516020600480358082013583810280860185019096528085526102f195369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497506134ca9650505050505050565b34801561114c57600080fd5b50610b3161360c565b34801561116157600080fd5b506102f160043561361b565b34801561117957600080fd5b506103e9600160a060020a036004351661380f565b3360009081526005602052604090205460ff1615156111e5576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a0382166000908152600a6020526040902054600019141561121357611213826000836131e2565b600160a060020a0382166000818152600960209081526040808320805460ff19166001179055805183815280830182815286519282019290925285517f4bf46282901af80a4309ce07c36d841184ce98297f8735f7769d169497ac7a4c94938793916060840191850190808383895b8381101561129a578181015183820152602001611282565b50505050905090810190601f1680156112c75780820380516001836020036101000a031916815260200191505b50935050505060405180910390a25050565b60056020526000908152604090205460ff1681565b60408051808201909152600a81527f4c4547414c424c4f434b00000000000000000000000000000000000000000000602082015281565b600061134283836020604051908101604052806000815250611e8e565b9392505050565b600354600090600160a060020a031633146113ae576040805160e560020a62461bcd02815260206004820152601b60248201527f526f6f742070726976696c6567652069732072657175697265642e0000000000604482015290519081900360640190fd5b600160a060020a038216151561141f576040805160e560020a62461bcd0281526020600482015260436024820152600080516020614d648339815191526044820152600080516020614e24833981519152606482015260e960020a6239b99702608482015290519081900360a40190fd5b60048054600160a060020a038416600160a060020a0319909116811790915560408051918252517f94b17f1a4844062cbed00809347b0f8149fc88c5a3ea720c7aed42c559eed46d9181900360200190a1506001919050565b6001545b90565b600061149d8484846020604051908101604052806000815250612c88565b949350505050565b3360009081526005602052604081205460ff1615156114fc576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b611507848484613821565b9050611518600033868660026138fd565b509392505050565b6b3077b58d5d3783919800000081565b601281565b3360009081526005602052604090205460ff16151561158c576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b6008805460ff1916600117908190556040805160ff929092168015158352602080840183815285519385019390935284517fc1086893b0a3f1d991fd25e26cd28cad11de174842b04a55cc2423ed178e43829492938693929091606084019185019080838360005b8381101561160c5781810151838201526020016115f4565b50505050905090810190601f1680156116395780820380516001836020036101000a031916815260200191505b50935050505060405180910390a150565b600c6020526000908152604090205481565b6000611669848484613a81565b90506115183333868660006138fd565b60001981565b336000908152600560205260408120548190819060ff1615156116da576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b87518751909250821461175d576040805160e560020a62461bcd02815260206004820152603160248201527f5468652073697a65206f662027746f2720616e64202776616c7565732720617260448201527f72617920697320646966666572656e742e000000000000000000000000000000606482015290519081900360840190fd5b845182146117db576040805160e560020a62461bcd02815260206004820152603560248201527f5468652073697a65206f662027746f2720616e6420277573657249644861736860448201527f2720617272617920697320646966666572656e742e0000000000000000000000606482015290519081900360840190fd5b506001915060005b818110156119d957875130908990839081106117fb57fe5b60209081029091010151600160a060020a0316141561187a576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b8280156118bb57506118bb89898381518110151561189457fe5b9060200190602002015189848151811015156118ac57fe5b90602001906020020151613b7f565b925087818151811015156118cb57fe5b90602001906020020151600160a060020a031633600160a060020a03168a600160a060020a03167f46732c6597d2f271226a30dbf728c12f77fb7dac6f0dbe8d572e5377e3c382cc8a8581518110151561192157fe5b906020019060200201518a8a8781518110151561193a57fe5b906020019060200201518a6040518085815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561199457818101518382015260200161197c565b50505050905090810190601f1680156119c15780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a46001016117e3565b50509695505050505050565b600354600090600160a060020a03163314611a4a576040805160e560020a62461bcd02815260206004820152601b60248201527f526f6f742070726976696c6567652069732072657175697265642e0000000000604482015290519081900360640190fd5b600160a060020a0382161515611abb576040805160e560020a62461bcd0281526020600482015260436024820152600080516020614d648339815191526044820152600080516020614e24833981519152606482015260e960020a6239b99702608482015290519081900360a40190fd5b60038054600160a060020a038416600160a060020a0319909116811790915560408051918252517f43ddeae7116ae634a7d05c2d1c588bca11b7bbc8cb96fbb2cb9c5b1afdf9ce129181900360200190a1506001919050565b336000818152600d60205260408120549091829182904210611b6a57600160a060020a0382166000908152600b60209081526040808320549183905290912054611b639163ffffffff613d8516565b9250611ba0565b600160a060020a0382166000908152600c60209081526040808320549183905290912054611b9d9163ffffffff613d8516565b92505b611ba8613d97565b905080831115611bba57809350611bbe565b8293505b50505090565b60096020526000908152604090205460ff1681565b336000908152600560205260408120548190819060ff161515611c34576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b875187519092508214611cb7576040805160e560020a62461bcd02815260206004820152603160248201527f5468652073697a65206f662027746f2720616e64202776616c7565732720617260448201527f72617920697320646966666572656e742e000000000000000000000000000000606482015290519081900360840190fd5b506001915060005b818110156119d95787513090899083908110611cd757fe5b60209081029091010151600160a060020a03161415611d56576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b828015611d705750611d7089898381518110151561189457fe5b92508781815181101515611d8057fe5b90602001906020020151600160a060020a031633600160a060020a03168a600160a060020a03167f843fee6b240ccbe362ec9ff87bbe6066267f432370ecb72826665f566d8c7c0e8a85815181101515611dd657fe5b906020019060200201518a8a87815181101515611def57fe5b906020019060200201518a6040518085815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611e49578181015183820152602001611e31565b50505050905090810190601f168015611e765780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4600101611cbf565b6000611e9a8484613e3b565b905083600160a060020a031633600160a060020a03167fc42d136c544a0985d54d6099e13e96aaeb0d02385deaa85418ba2dbcef0568b385856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611f16578181015183820152602001611efe565b50505050905090810190601f168015611f435780820380516001836020036101000a031916815260200191505b50935050505060405180910390a39392505050565b6000611f648484613ea1565b336000818152600260209081526040808320600160a060020a038a168085529083528184205482518181528085018481528a5194820194909452895197985091967fc42d136c544a0985d54d6099e13e96aaeb0d02385deaa85418ba2dbcef0568b39591948a94926060850192918601919081908490849083811015611f16578181015183820152602001611efe565b600061134283836020604051908101604052806000815250612339565b600454600090600160a060020a03163314612072576040805160e560020a62461bcd0281526020600482015260226024820152600080516020614dc4833981519152604482015260f160020a61321702606482015290519081900360840190fd5b61207d848484613f3a565b9050611518600033868660016138fd565b3360009081526005602052604090205460ff1615156120e5576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b6120f282600019836131e2565b600160a060020a0382166000818152600960209081526040808320805460ff191690558051600180825281840183815287519383019390935286517f4bf46282901af80a4309ce07c36d841184ce98297f8735f7769d169497ac7a4c959194889492606085019291860191908190849084908381101561129a578181015183820152602001611282565b3360009081526005602052604081205460ff1615156121d3576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a03841630141561224a576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b612255858585613b7f565b905083600160a060020a031633600160a060020a031686600160a060020a03167f6694ed3a35939e3a57c2b60c17d8745774d2e58d8b3036947b20879ee236852b86866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156122db5781810151838201526020016122c3565b50505050905090810190601f1680156123085780820380516001836020036101000a031916815260200191505b50935050505060405180910390a4949350505050565b600160a060020a031660009081526020819052604090205490565b6000611f648484614020565b600760205260009081526040902054600160a060020a031681565b3360009081526005602052604081205460ff1615156123b7576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a03841630141561242e576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b612439858585613b7f565b905083600160a060020a031633600160a060020a031686600160a060020a03167fbc8b89a32127702fe6ba17414ce86e9cf382fa5e17314f1585f0002ff1e5ee5b8686604051808381526020018060200182810382528381815181526020019150805190602001908083836000838110156122db5781810151838201526020016122c3565b600354600160a060020a03163314612520576040805160e560020a62461bcd02815260206004820152601b60248201527f526f6f742070726976696c6567652069732072657175697265642e0000000000604482015290519081900360640190fd5b600354600160a060020a0316ff5b600454600090600160a060020a0316331461258f576040805160e560020a62461bcd0281526020600482015260226024820152600080516020614dc4833981519152604482015260f160020a61321702606482015290519081900360840190fd5b600160a060020a0382161515612600576040805160e560020a62461bcd0281526020600482015260436024820152600080516020614d648339815191526044820152600080516020614e24833981519152606482015260e960020a6239b99702608482015290519081900360a40190fd5b600160a060020a03821660009081526005602052604090205460ff1615612697576040805160e560020a62461bcd02815260206004820152602360248201527f54686973206164647265737320697320616c726561647920726567697374657260448201527f65642e0000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382166000818152600560209081526040808320805460ff191660019081179091556006805491820181559093527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f9092018054600160a060020a03191684179055815192835290517f5446d64d957daf41eca8227aa8fa5eb7f92c617adf03fbd9df64e8eb564d824e9281900390910190a1506001919050565b600454600160a060020a031681565b3360009081526005602052604081205460ff16151561279f576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b6127a98484614110565b905083600160a060020a031633600160a060020a03167fb8fc37b8d9ff0bfbde9e59521638f1bff9792af7682c7e5edc93b120d909e200858560405180838152602001806020018281038252838181518152602001915080519060200190808383600083811015611f16578181015183820152602001611efe565b600d6020526000908152604090205481565b60408051808201909152600381527f4c424b0000000000000000000000000000000000000000000000000000000000602082015281565b336000908152600560205260408120548190819060ff1615156128c8576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b87518751909250821461294b576040805160e560020a62461bcd02815260206004820152603160248201527f5468652073697a65206f662027746f2720616e64202776616c7565732720617260448201527f72617920697320646966666572656e742e000000000000000000000000000000606482015290519081900360840190fd5b845182146129c9576040805160e560020a62461bcd02815260206004820152603560248201527f5468652073697a65206f662027746f2720616e6420277573657249644861736860448201527f2720617272617920697320646966666572656e742e0000000000000000000000606482015290519081900360840190fd5b506001915060005b818110156119d957875130908990839081106129e957fe5b60209081029091010151600160a060020a03161415612a68576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b828015612a825750612a8289898381518110151561189457fe5b92508781815181101515612a9257fe5b90602001906020020151600160a060020a031633600160a060020a03168a600160a060020a03167fbf46a843eeff7859c7a579aafa44e7d58c0bf5e7406dfeacf5f1938b69bef9918a85815181101515612ae857fe5b906020019060200201518a8a87815181101515612b0157fe5b906020019060200201518a6040518085815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612b5b578181015183820152602001612b43565b50505050905090810190601f168015612b885780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a46001016129d1565b60006113428383602060405190810160405280600081525061165c565b3360009081526005602052604090205460ff161515612c14576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b6008805460ff19169055604080516000808252602080830184815285519484019490945284517fc1086893b0a3f1d991fd25e26cd28cad11de174842b04a55cc2423ed178e43829492938693909290916060840191850190808383898381101561160c5781810151838201526020016115f4565b6000612c9685858585614210565b9050612ca68533868660006138fd565b50949350505050565b6000612cbb600061361b565b905090565b336000908152600560205260408120548190819060ff161515612d1b576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a0384161515612d8c576040805160e560020a62461bcd0281526020600482015260436024820152600080516020614d648339815191526044820152600080516020614e24833981519152606482015260e960020a6239b99702608482015290519081900360a40190fd5b33600090815260076020526040902054600160a060020a0385811691161415612e25576040805160e560020a62461bcd02815260206004820152602860248201527f596f75206861766520616c726561647920766f74656420666f7220746869732060448201527f6163636f756e742e000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50503360009081526007602052604081208054600160a060020a031916600160a060020a038516179055805b60065460ff82161015612ebe5783600160a060020a03166007600060068460ff16815481101515612e7e57fe5b6000918252602080832090910154600160a060020a039081168452908301939093526040909101902054161415612eb6576001909101905b600101612e51565b600654600290048260ff161115612f88575060038054600160a060020a031916600160a060020a03851617905560005b60065460ff82161015612f4b576007600060068360ff16815481101515612f1157fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190208054600160a060020a0319169055600101612eee565b60408051600160a060020a038616815290517f43ddeae7116ae634a7d05c2d1c588bca11b7bbc8cb96fbb2cb9c5b1afdf9ce129181900360200190a15b5060019392505050565b600a6020526000908152604090205481565b6004546000908190600160a060020a03163314613007576040805160e560020a62461bcd0281526020600482015260226024820152600080516020614dc4833981519152604482015260f160020a61321702606482015290519081900360840190fd5b600160a060020a03831660009081526005602052604090205460ff16151561309f576040805160e560020a62461bcd02815260206004820152602860248201527f5468697320696e7075742061646472657373206973206e6f742061207375706560448201527f72206f776e65722e000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a0382166000908152600560205260408120805460ff191690555b6006548110156131945782600160a060020a03166006828154811015156130e457fe5b600091825260209091200154600160a060020a0316141561318c576006805461311490600163ffffffff613d8516565b8154811061311e57fe5b60009182526020909120015460068054600160a060020a03909216918390811061314457fe5b60009182526020909120018054600160a060020a031916600160a060020a039290921691909117905560065461317b906001613d85565b613186600682614d20565b50613194565b6001016130c1565b60408051600160a060020a038516815290517f1e64d9a491033a9731fa82493f0ab60e9f74294eca27edd93629f1fbaa15d2879181900360200190a150600192915050565b60085460ff1681565b3360009081526005602052604090205460ff161515613239576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a0383166000818152600a60209081526040808320869055805186815280830182815286519282019290925285517fb19425af6288c6bb0d88f64d6d1cfe5eb7e2d31ee92f1012798df97a9b6b011a9488948894926060850192918601918190849084905b838110156132bc5781810151838201526020016132a4565b50505050905090810190601f1680156132e95780820380516001836020036101000a031916815260200191505b50935050505060405180910390a2505050565b600061134283836020604051908101604052806000815250611f58565b3360009081526005602052604081205460ff161515613370576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b600160a060020a0384163014156133e7576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b6133f2858585613b7f565b905083600160a060020a031633600160a060020a031686600160a060020a03167fe7d1878c1e2a3b9b8dec382034e21bd5e79bf143c08481ca7dd7c54da9f84f658686604051808381526020018060200182810382528381815181526020019150805190602001908083836000838110156122db5781810151838201526020016122c3565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60068054829081106134b057fe5b600091825260209091200154600160a060020a0316905081565b336000908152600560205260408120548190819060ff161515613525576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b8551855190925082146135a8576040805160e560020a62461bcd02815260206004820152603660248201527f5468652073697a65206f6620276275726e6572732720616e64202776616c756560448201527f732720617272617920697320646966666572656e742e00000000000000000000606482015290519081900360840190fd5b506001915060005b81811015613603578280156135f957506135f986828151811015156135d157fe5b9060200190602002015186838151811015156135e957fe5b9060200190602002015186612748565b92506001016135b0565b50509392505050565b600354600160a060020a031681565b33600090815260208190526040812054821115613682576040805160e560020a62461bcd02815260206004820152601d60248201527f596f75722062616c616e636520697320696e73756666696369656e742e000000604482015290519081900360640190fd5b336000908152600b602052604090205482106136af57336000908152600d602052604090204290556137b3565b336000908152600d6020526040902054421015613788576040805160e560020a62461bcd02815260206004820152607860248201527f5468652072656d61696e696e67206d6f6e657920696e20746865206163636f7560448201527f6e742063616e6e6f7420626520756e6c6f636b656420636f6e74696e756f757360648201527f6c792e20596f752063616e6e6f742072656e657720756e74696c20313220686f60848201527f757273206166746572207468652066697273742072756e2e000000000000000060a482015290519081900360c40190fd5b336000908152600d6020908152604080832061a8c042019055600b825280832054600c909252909120555b336000818152600b60209081526040808320869055600d8252918290205482518681529182015281517f29f8b22a98b13376caf4551cf7eb973ad73a6b94bb83780818b808e04bf86af5929181900390910190a2506001919050565b600b6020526000908152604090205481565b3360009081526005602052604081205460ff161515613878576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020614de4833981519152604482015290519081900360640190fd5b6138828484614110565b905083600160a060020a031633600160a060020a03167f8eb32cafb0cf26efee30e87cd8fcd4de2aaddc24e246cefa80a822d8b5da2647858560405180838152602001806020018281038252838181518152602001915080519060200190808383600083811015611f16578181015183820152602001611efe565b60008061391285600160a060020a0316614319565b15613a745784600160a060020a031660405180807f6f6e4c424b526563656976656428616464726573732c616464726573732c756981526020017f6e743235362c75696e7438290000000000000000000000000000000000000000815250602c019050604051809103902060e060020a9004888887876040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184600160a060020a0316600160a060020a031681526020018381526020018260028111156139e057fe5b60ff1681526020019450505050506000604051808303816000875af19250505090508015613a745784600160a060020a031686600160a060020a031688600160a060020a03167f9df0ff3e8a747a2f4b13c576a6d834fa1c89e4996027e5b8516cad45fcf66da4878760405180838152602001826002811115613a5f57fe5b60ff1681526020019250505060405180910390a45b5060019695505050505050565b6000600160a060020a038416301415613afa576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b613b048484614321565b905083600160a060020a031633600160a060020a03167ff72d77fe5fc35130eec6674380320a02f9398663c3d490e5ad8e40bd2dddbec5858560405180838152602001806020018281038252838181518152602001915080519060200190808383600083811015611f16578181015183820152602001611efe565b336000908152600d6020526040812054849083904210613c7457600160a060020a0382166000908152600b60209081526040808320549183905290912054613bcd908363ffffffff613d8516565b1015613c6f576040805160e560020a62461bcd02815260206004820152605060248201527f5472616e7366657261626c65206c696d69742065786365656465642e2043686160448201527f6e6765207468652062616c616e6365206c6f636b2076616c756520666972737460648201527f20616e64207468656e2075736520697400000000000000000000000000000000608482015290519081900360a40190fd5b613d70565b600160a060020a0382166000908152600c60209081526040808320549183905290912054613ca8908363ffffffff613d8516565b1015613d70576040805160e560020a62461bcd02815260206004820152607560248201527f5472616e7366657261626c65206c696d69742065786365656465642e20506c6560448201527f617365206e6f746520746861742074686520726573696475616c206c6f636b2060648201527f76616c756520686173206368616e67656420616e642069742077696c6c20746160848201527f6b6520313220686f75727320746f206170706c792e000000000000000000000060a482015290519081900360c40190fd5b613d7b868686614526565b9695505050505050565b600082821115613d9157fe5b50900390565b600854600090339060ff161580613dc65750600160a060020a03811660009081526009602052604090205460ff165b8015613df35750600160a060020a0381166000908152600a60209081526040808320549183905290912054115b15613e3257600160a060020a0381166000908152600a60209081526040808320549183905290912054613e2b9163ffffffff613d8516565b9150613e37565b600091505b5090565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054613ed5908363ffffffff61466816565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600454600090600160a060020a03163314613f9b576040805160e560020a62461bcd0281526020600482015260226024820152600080516020614dc4833981519152604482015260f160020a61321702606482015290519081900360840190fd5b613fa5848461467b565b905083600160a060020a031633600160a060020a03167fd9386d383a90605f77da45e4db61fcfc6b8999c0ffba009c0c1d23c2681f7af9858560405180838152602001806020018281038252838181518152602001915080519060200190808383600083811015611f16578181015183820152602001611efe565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561407557336000908152600260209081526040808320600160a060020a03881684529091528120556140aa565b614085818463ffffffff613d8516565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a038216600090815260208190526040812054821115614180576040805160e560020a62461bcd02815260206004820152601d60248201527f596f75722062616c616e636520697320696e73756666696369656e742e000000604482015290519081900360640190fd5b600160a060020a0383166000908152602081905260409020546141a9908363ffffffff613d8516565b600160a060020a0384166000908152602081905260409020556001546141d5908363ffffffff613d8516565b600155604080518381529051600091600160a060020a03861691600080516020614e048339815191529181900360200190a350600192915050565b6000600160a060020a038416301415614289576040805160e560020a62461bcd0281526020600482015260606024820152600080516020614d848339815191526044820152600080516020614da48339815191526064820152600080516020614e44833981519152608482015290519081900360a40190fd5b614294858585613b7f565b905083600160a060020a031633600160a060020a031686600160a060020a03167ff9c19ac2dd83f90259a00db73dd44e7a73df5bb97ee33ed7ec184739088e98768686604051808381526020018060200182810382528381815181526020019150805190602001908083836000838110156122db5781810151838201526020016122c3565b6000903b1190565b336000818152600d60205260408120549091908390421061441757600160a060020a0382166000908152600b60209081526040808320549183905290912054614370908363ffffffff613d8516565b1015614412576040805160e560020a62461bcd02815260206004820152605060248201527f5472616e7366657261626c65206c696d69742065786365656465642e2043686160448201527f6e6765207468652062616c616e6365206c6f636b2076616c756520666972737460648201527f20616e64207468656e2075736520697400000000000000000000000000000000608482015290519081900360a40190fd5b614513565b600160a060020a0382166000908152600c6020908152604080832054918390529091205461444b908363ffffffff613d8516565b1015614513576040805160e560020a62461bcd02815260206004820152607560248201527f5472616e7366657261626c65206c696d69742065786365656465642e20506c6560448201527f617365206e6f746520746861742074686520726573696475616c206c6f636b2060648201527f76616c756520686173206368616e67656420616e642069742077696c6c20746160848201527f6b6520313220686f75727320746f206170706c792e000000000000000000000060a482015290519081900360c40190fd5b61451d8585614776565b95945050505050565b6008546000908490839060ff1615806145575750600160a060020a03821660009081526009602052604090205460ff165b15156145ad576040805160e560020a62461bcd02815260206004820181905260248201527f546865206163636f756e742069732063757272656e746c79206c6f636b65642e604482015290519081900360640190fd5b600160a060020a0382166000908152600a602090815260408083205491839052909120546145e1908363ffffffff613d8516565b101561465d576040805160e560020a62461bcd02815260206004820152602481018290527f5472616e7366657261626c65206c696d69742065786365656465642e2043686560448201527f636b2074686520737461747573206f6620746865206c6f636b2076616c75652e606482015290519081900360840190fd5b613d7b8686866148b7565b8181018281101561467557fe5b92915050565b6000600160a060020a03831615156146ee576040805160e560020a62461bcd0281526020600482015260436024820152600080516020614d648339815191526044820152600080516020614e24833981519152606482015260e960020a6239b99702608482015290519081900360a40190fd5b600154614701908363ffffffff61466816565b600155600160a060020a03831660009081526020819052604090205461472d908363ffffffff61466816565b600160a060020a038416600081815260208181526040808320949094558351868152935192939192600080516020614e048339815191529281900390910190a350600192915050565b6008546000903390839060ff1615806147a75750600160a060020a03821660009081526009602052604090205460ff165b15156147fd576040805160e560020a62461bcd02815260206004820181905260248201527f546865206163636f756e742069732063757272656e746c79206c6f636b65642e604482015290519081900360640190fd5b600160a060020a0382166000908152600a60209081526040808320549183905290912054614831908363ffffffff613d8516565b10156148ad576040805160e560020a62461bcd02815260206004820152602481018290527f5472616e7366657261626c65206c696d69742065786365656465642e2043686560448201527f636b2074686520737461747573206f6620746865206c6f636b2076616c75652e606482015290519081900360840190fd5b61451d8585614b6f565b6000600160a060020a038316151561493f576040805160e560020a62461bcd02815260206004820152603e60248201527f526563697069656e742061646472657373206973207a65726f2061646472657360448201527f732830292e20436865636b20746865206164647265737320616761696e2e0000606482015290519081900360840190fd5b600160a060020a0384166000908152602081905260409020548211156149d5576040805160e560020a62461bcd02815260206004820152602760248201527f5468652062616c616e6365206f66206163636f756e7420697320696e7375666660448201527f696369656e742e00000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115614a76576040805160e560020a62461bcd02815260206004820152603060248201527f496e73756666696369656e7420746f6b656e7320617070726f7665642066726f60448201527f6d206163636f756e74206f776e65722e00000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038416600090815260208190526040902054614a9f908363ffffffff613d8516565b600160a060020a038086166000908152602081905260408082209390935590851681522054614ad4908363ffffffff61466816565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054614b16908363ffffffff613d8516565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020614e04833981519152929181900390910190a35060019392505050565b6000600160a060020a0383161515614bf7576040805160e560020a62461bcd02815260206004820152603e60248201527f526563697069656e742061646472657373206973207a65726f2061646472657360448201527f732830292e20436865636b20746865206164647265737320616761696e2e0000606482015290519081900360840190fd5b33600090815260208190526040902054821115614c84576040805160e560020a62461bcd02815260206004820152602760248201527f5468652062616c616e6365206f66206163636f756e7420697320696e7375666660448201527f696369656e742e00000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b33600090815260208190526040902054614ca4908363ffffffff613d8516565b3360009081526020819052604080822092909255600160a060020a03851681522054614cd6908363ffffffff61466816565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020614e048339815191529281900390910190a350600192915050565b815481835581811115614d4457600083815260209020614d44918101908301614d49565b505050565b61147c91905b80821115613e375760008155600101614d4f560054686973206164647265737320746f20626520736574206973207a65726f2061546865207265636569766520616464726573732069732074686520436f6e746163742041646472657373206f66204c4547414c424c4f434b2e20596f7520636153757065724f776e65722070726976696c6564676520697320726571756972654f776e65722070726976696c656467652069732072657175697265642e000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6464726573732830292e20436865636b2074686520696e7075742061646472656e6e6f742073656e64206d6f6e657920746f207468697320616464726573732ea165627a7a7230582039b6f7a0f6681c71def9f3ef8e170c13ff21db2efa6bfdc839688d1bc9ff0c970029
Swarm Source
bzzr://39b6f7a0f6681c71def9f3ef8e170c13ff21db2efa6bfdc839688d1bc9ff0c97
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.